Skip to content

Commit

Permalink
First commit in new dir
Browse files Browse the repository at this point in the history
  • Loading branch information
munapower committed Jan 24, 2024
1 parent 1cb616b commit 64eca66
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/first.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: first

on: push

jobs:
job1:
name: First job
runs-on: ubuntu-latest
steps:
- name: Step one
uses: actions/checkout@v2
- name: Step two
run: env | sort
job2:
name: Second job
runs-on: windows-latest
steps:
- name: Step one
uses: actions/checkout@v2
- name: Step two
run: "Get-ChildItem Env: | Sort-Object Name"

0 comments on commit 64eca66

Please sign in to comment.