github.com/nektos/act@v0.2.63/pkg/runner/testdata/issue-1595/missing.yml (about) 1 name: missing 2 on: push 3 4 jobs: 5 second: 6 runs-on: ubuntu-latest 7 needs: first 8 steps: 9 - run: echo How did you get here? 10 shell: bash 11 12 standalone: 13 runs-on: ubuntu-latest 14 steps: 15 - run: echo Hello world 16 shell: bash