We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bc6328 commit 1b2cc7eCopy full SHA for 1b2cc7e
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: Run build ant tests
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ - dev
7
+ pull_request:
8
9
10
+
11
+jobs:
12
+ build:
13
+ name: run build
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: build library
18
+ run: ./build.sh
19
+ test:
20
+ name: run tests
21
22
23
24
+ - name: runtests
25
+ run: ./build.sh test
0 commit comments