First workflow run #1
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: first | |
| on: [push] | |
| jobs: | |
| job1: | |
| name: First Job | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Step One | |
| uses: actions/checkout@v4 | |
| - name: Step Two | |
| run: env | sort | |
| job2: | |
| name: Second Job | |
| runs-on: windows-latest | |
| steps: | |
| - name: Step One | |
| uses: actions/checkout@v4 | |
| - name: Step Two | |
| run: "Get-ChildItem Env: | Sort-Object Name" |