Skip to content

Commit 4d96f94

Browse files
author
Raffaele Marcello
committed
Add first workflow for GitHub Actions
1 parent 927c9b3 commit 4d96f94

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/first-workflow.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: First Workflow
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
job1:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Echo Job 1
11+
run: echo "This is job 1"
12+
13+
job2:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Echo Job 2
17+
run: echo "This is job 2"

0 commit comments

Comments
 (0)