Skip to content

Commit b6c450f

Browse files
committed
implement 11.3 Hello world!
1 parent c23ef16 commit b6c450f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/hello.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Hello World!
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
hello_world_job:
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- name: Say hello
13+
run: |
14+
echo "Hello World!"

0 commit comments

Comments
 (0)