diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60867a4..1a7ef9f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -112,17 +112,22 @@ jobs: - name: Build run: cmake --build build - - name: Log some test metadata - if: matrix.os == 'windows-latest' + - name: Run tests on Unix + if: matrix.os != 'windows-latest' working-directory: build/tests + run: ./test_perturb --duration --force-colors + + - name: Run tests in Windows + if: matrix.os == 'windows-latest' +# working-directory: build/tests run: | dir - ./test_perturb --version + dir build + dir build/tests + dir build/tests/Debug + dir build/tests/test_perturb.dir ./test_perturb --ltc - - name: Run tests - working-directory: build/tests - run: ./test_perturb --duration --force-colors docs: name: Docs