diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index abb6236..394d587 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -7,8 +7,8 @@ on: branches: [ master ] env: - # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) - BUILD_TYPE: Release + TESTVAR_NIX: "/usr/local/bin:/usr/bin:/bin" + TESTVAR_WIN: "C:\\usr\\local\\bin;C:\\usr\\bin;C:\\bin" jobs: tests: @@ -54,5 +54,5 @@ jobs: - name: Test working-directory: ${{ github.workspace }}/build - run: ctest -C ${{ matrix.build_type }} + run: ctest -V -C ${{ matrix.build_type }} |