Skip to content

Commit 001f915

Browse files
committed
Just use 'make check' to run tests on Github actions for every configuration
but Win+MSVC; the tests previously were not being run at all!
1 parent 4cea9c0 commit 001f915

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/fedora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ jobs:
8989

9090
- name: Test
9191
working-directory: build/test
92-
run: ctest -C ${{ env.BUILD_TYPE }} -j $(nproc) --output-on-failure
92+
run: make check

.github/workflows/macos-12.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232

3333
- name: Test
3434
working-directory: build
35-
run: ctest -C ${{ env.BUILD_TYPE }} -j $(sysctl -n hw.ncpu) --output-on-failure
35+
run: make check

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747

4848
- name: Test
4949
working-directory: build
50-
run: ctest -C ${{ env.BUILD_TYPE }} -j $(nproc) --output-on-failure
50+
run: make check

0 commit comments

Comments
 (0)