Skip to content

Commit d6bb3ad

Browse files
Create multi-jobs.yml
1 parent b680404 commit d6bb3ad

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/multi-jobs.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Display name
2+
name: Multiple Jobs
3+
on:
4+
workflow_dispatch:
5+
jobs:
6+
job-1:
7+
name: Job 1
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Output of job 1
11+
run: echo "Hello from Job 1"
12+
job-2:
13+
name: Job 2
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Output of job 2
17+
run: echo "Hello from job 2"
18+
job-3:
19+
name: Job 3
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Output of job 3
23+
run: echo "Hello from Job 3"
24+
job-4:
25+
name: Job 4
26+
runs-on: ubuntu-latest
27+
steps:
28+
- name: Output of job 4
29+
run: echo "Hello from job 4"
30+
31+
32+
33+

0 commit comments

Comments
 (0)