Skip to content

Commit

Permalink
feat: Config
Browse files Browse the repository at this point in the history
  • Loading branch information
dango2887 committed Aug 25, 2023
1 parent 22ca105 commit 7c0867b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/grouped.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ name: Grouped Workflow
on: [push]

jobs:
job0:
runs-on: ubuntu-latest
steps:
- name: 执行作业0
run: echo "Job 0 is running"

job1:
runs-on: ubuntu-latest
needs: job0
steps:
- name: 执行作业1
run: echo "Job 1 is running"
Expand All @@ -18,6 +25,7 @@ jobs:

job3:
runs-on: macOS-latest
needs: job0
steps:
- name: 执行作业3
run: echo "Job 3 is running"
Expand Down

0 comments on commit 7c0867b

Please sign in to comment.