Running Build % Install action (triggered by lscgh) #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build & Install action" | |
run-name: "Running Build % Install action (triggered by ${{ github.actor }})" | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Build print" | |
run: "echo Build" | |
Install: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Install print" | |
run: "echo Run" |