Skip to content

Commit f8b936d

Browse files
GitHub: run unit tests
1 parent 0d2afb6 commit f8b936d

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/linux.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,16 @@ jobs:
6464
run: |
6565
./scripts/build_mpos.sh unix dev
6666
67-
- name: Run tests on unix dev
67+
- name: Run syntax tests on unix dev
6868
run: |
6969
./tests/check_syntax.sh
7070
continue-on-error: true
7171

72+
- name: Run unit tests on unix dev
73+
run: |
74+
./tests/unittest.sh
75+
continue-on-error: true
76+
7277
- name: Upload built binary as artifact
7378
uses: actions/upload-artifact@v4
7479
with:

.github/workflows/macos.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,16 @@ jobs:
3333
run: |
3434
./scripts/build_mpos.sh macOS dev
3535
36-
- name: Run tests on macOS dev
36+
- name: Run syntax tests on macOS dev
3737
run: |
3838
./tests/check_syntax.sh
3939
continue-on-error: true
4040

41+
- name: Run unit tests on macOS dev
42+
run: |
43+
./tests/unittest.sh
44+
continue-on-error: true
45+
4146
- name: Upload built binary as artifact
4247
uses: actions/upload-artifact@v4
4348
with:

0 commit comments

Comments
 (0)