We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a1c95 commit 59b98e0Copy full SHA for 59b98e0
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,24 @@
1
+name: Test Worklow
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
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