Skip to content

Commit

Permalink
First Challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
munapower committed Jan 24, 2024
1 parent 058f820 commit e0ea0cc
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/first.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Step one
uses: actions/checkout@v2
- name: Step two
run: env | sort
run: date
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"
run: Get-Date
job3:
name: Third job
runs-on: macos-latest
steps:
- name: Step one
run: "date -j -u -f "%m/%d/%y %H:%M:%S" +%s "08/08/20 20:20:00""
job4:
name: Fourth job
runs-on: ubuntu-latest
needs: [job1, job2, job3]
steps:
- name: Step one
run: date

0 comments on commit e0ea0cc

Please sign in to comment.