Test commit for workflow 1760120773902 #49
This file contains hidden or 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: Multi-Job Workflow | |
| on: [push] | |
| jobs: | |
| job1: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Step 1 | |
| run: echo "Job 1, Step 1" | |
| job2: | |
| needs: job1 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Step 1 | |
| run: echo "Job 2, Step 1" |