1 parent 56610c4 commit 1bbbf1fCopy full SHA for 1bbbf1f
1 file changed
.github/workflows/actions.yml
@@ -0,0 +1,21 @@
1
+# Event name
2
+name: on_push
3
+
4
+# When the event should run
5
6
+on:
7
+ push:
8
+ branch:
9
+ - "**" # This will run on all branches,and must be wquote to be ahandle by yaml
10
11
+# What jobs to execute
12
13
+jobs:
14
15
+ build_and_test:
16
+ runs-on: ubuntu-latest
17
18
+ steps:
19
+ - uses: actions/checkout@v2
20
21
+# What steps within each job
0 commit comments