We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94adcdc commit 67a3b8aCopy full SHA for 67a3b8a
.github/workflows/CI.yml
@@ -55,10 +55,15 @@ jobs:
55
run: cmake -Wdev -DCMAKE_BUILD_TYPE=Release -S . -B build
56
57
- name: Build and compile
58
- run: cmake --build build || cmake --build build --verbose --parallel 1
+ run: cmake --build build
59
+
60
+ - run: cmake --build build --verbose --parallel 1
61
+ if: failure()
62
63
- name: test
- run: cmake --build build --target test
64
+ run: ctest --parallel
65
+ working-directory: build
66
67
68
- name: Test in-tree builds
69
if: contains( matrix.gcc_v, '9') # Only test one compiler on each platform
0 commit comments