Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
satya k committed Jan 24, 2024
0 parents commit 3e6475e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/exr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: ex1

on: push

jobs:
job1:
name: First job
runs-on: ubuntu-latest
steps:
- name: Step one
uses: actions/checkout@v3
- name: Step two
run: echo "The date is: $(date)"
job2:
name: Second job
runs-on: windows-latest
steps:
- name: Step one
uses: actions/checkout@v3
- name: step two
run: Write-Host "Windows Date is:" Get-Date
job3:
name: Third job
runs-on: macos-latest
steps:
- name: Step one
uses: actions/checkout@v3
- name: step two
run: date
job4:
name: Fourth job
runs-on: ubuntu-latest
needs: [job1,job2,job3,job4]
steps:
- name: Step one
uses: actions/checkout@v3
- name: step two
run: echo "The date is: $(date)"
Binary file added README.md
Binary file not shown.

0 comments on commit 3e6475e

Please sign in to comment.