Skip to content

Commit f0787c1

Browse files
authored
First workflow run
1 parent 5d0e928 commit f0787c1

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/first.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: first
2+
3+
on: [push]
4+
5+
jobs:
6+
job1:
7+
name: First Job
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Step One
11+
uses: actions/checkout@v4
12+
- name: Step Two
13+
run: env | sort
14+
job2:
15+
name: Second Job
16+
runs-on: windows-latest
17+
steps:
18+
- name: Step One
19+
uses: actions/checkout@v4
20+
- name: Step Two
21+
run: "Get-ChildItem Env: | Sort-Object Name"

0 commit comments

Comments
 (0)