Skip to content
This repository was archived by the owner on Feb 3, 2025. It is now read-only.

Commit 0b902fd

Browse files
authored
Create hello.yml
0 parents  commit 0b902fd

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 GitHub Action
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v2
12+
13+
- name: Echo Hello
14+
run: echo "Hello"

0 commit comments

Comments
 (0)