Skip to content

Commit 59b98e0

Browse files
committed
introduce github actions
1 parent b4a1c95 commit 59b98e0

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test Worklow
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
16+
17+
- name: Install dependencies
18+
run: make
19+
20+
- name: Run check
21+
run: make check
22+
23+
- name: Run test
24+
run: make test

0 commit comments

Comments
 (0)