Spaces:
Sleeping
Sleeping
Dev Paragiri
commited on
Commit
•
e2afdfc
1
Parent(s):
62862ac
Setup hello action
Browse files- .github/workflows/hello.yml +17 -0
.github/workflows/hello.yml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Hello World
|
2 |
+
|
3 |
+
on:
|
4 |
+
push:
|
5 |
+
branches:
|
6 |
+
- master
|
7 |
+
pull_request:
|
8 |
+
branches:
|
9 |
+
- master
|
10 |
+
|
11 |
+
jobs:
|
12 |
+
hello:
|
13 |
+
runs-on: ubuntu-latest
|
14 |
+
|
15 |
+
steps:
|
16 |
+
- name: Hello step
|
17 |
+
run: echo "Hello World"
|