diff options
author | Erik Scholz <Green-Sky@users.noreply.github.com> | 2023-03-21 22:34:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-21 23:34:25 +0200 |
commit | 01a297b09932e29f3319d6588977c32a926c7907 (patch) | |
tree | 80bd842716fb957739599d5791e5bc31c3a3e298 | |
parent | 3366853e41fcc818222a0271c76b6106179106fb (diff) |
specify build type for ctest on windows (#371)
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b1b5dd..3030f4f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -108,7 +108,7 @@ jobs: cd build cmake .. cmake --build . --config Release - ctest --output-on-failure + ctest -C Release --output-on-failure - name: Get commit hash id: commit |