Skip to content

Commit 1bbbf1f

Browse files
authored
Create actions.yml
1 parent 56610c4 commit 1bbbf1f

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/actions.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)