We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 674d4c7 commit 7b63aacCopy full SHA for 7b63aac
1 file changed
.github/workflows/cmake-multi-platform.yml
@@ -97,11 +97,11 @@ jobs:
97
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} -j
98
99
- name: Test
100
- if: matrix.os == 'windows-latest'
+ if: steps.strings.outputs.enable_coverage == 'OFF'
101
working-directory: ${{ steps.strings.outputs.build-output-dir }}/tests
102
run: ctest --build-config ${{ matrix.build_type }} --output-on-failure
103
104
- name: Test + Coverage
105
- if: matrix.os != 'windows-latest'
+ if: steps.strings.outputs.enable_coverage == 'ON'
106
107
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} -t coverage
0 commit comments