Skip to content

Commit

Permalink
jobs workflow example
Browse files Browse the repository at this point in the history
  • Loading branch information
omenking authored Apr 30, 2024
1 parent 64a7b23 commit 805960a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Dep Jobs Example"

on: ['push']

jobs:
job2:
runs-on: ubuntu-latest
needs: job1
steps:
- name: stepA
run: echo "World"
job1:
runs-on: ubuntu-latest
steps:
- name: stepB
run: echo "Hello"

0 comments on commit 805960a

Please sign in to comment.