diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 37e3217..94ce2e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -59,5 +59,11 @@ jobs: run: cmake --build . -- -j2 - name: Test piqp + if: runner.os == 'Windows' + working-directory: build + run: ctest --test-dir tests --verbose + + - name: Test piqp + if: runner.os != 'Windows' working-directory: build - run: ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=tests/lsan/suppressions.txt ctest --test-dir tests --verbose \ No newline at end of file + run: ASAN_OPTIONS=detect_leaks=1 LSAN_OPTIONS=suppressions=lsan/suppressions.txt ctest --test-dir tests --verbose \ No newline at end of file