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 55f8d15 commit 4251b7cCopy full SHA for 4251b7c
.github/workflows/linux_run_tests.yml
@@ -0,0 +1,25 @@
1
+name: Ubuntu Linux Run Tests
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - name: build
17
+ run: |
18
+ cd build
19
+ cmake ../src
20
+ make -j4
21
+ - name: run_tests
22
23
+ cd tests
24
25
+ sudo ./run_all_tests
0 commit comments