Skip to content

Commit 74dfc5d

Browse files
authored
Create FirstWorkflow.yml
1 parent 15a8f61 commit 74dfc5d

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: My First Workflow
2+
on:
3+
push:
4+
branches:
5+
- main
6+
workflow_dispatch:
7+
8+
jobs:
9+
my_job:
10+
name: test
11+
runs-on: ubuntu-latest
12+
steps:
13+
- run: echo "Hello World"
14+
15+
- name: Checkout
16+
uses: actions/checkout@v4.2.2
17+
18+
- name: List files in the repo
19+
run: |
20+
echo "The repo ${{github.repository}} contains the following files:"
21+
tree
22+
23+
24+
25+

0 commit comments

Comments
 (0)