File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments