Skip to content

Commit 4251b7c

Browse files
Create linux_run_tests.yml
1 parent 55f8d15 commit 4251b7c

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/linux_run_tests.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Ubuntu Linux Run Tests
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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+
run: |
23+
cd tests
24+
make -j4
25+
sudo ./run_all_tests

0 commit comments

Comments
 (0)