Skip to content

Commit 9fb44ad

Browse files
author
{ravi kumar bulusu}
committed
added workflow yaml file
1 parent 346c8cb commit 9fb44ad

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/first-workflow.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: First Workflow
2+
3+
on: [push]
4+
5+
jobs:
6+
job1:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Echo Command 1 in Job 1
10+
run: echo "Step1 complete!"
11+
- name: Echo Command 2 in Job 1
12+
run: echo "Step2 complete!"
13+
14+
job2:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Echo Command 1 in Job 2
18+
run: echo "Step1 complete!"
19+
- name: Echo Command 2 in Job 2
20+
run: echo "Step2 complete!"

0 commit comments

Comments
 (0)