diff options
author | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-21 18:39:15 +0400 |
---|---|---|
committer | Mitya Selivanov <0x7fffff@guattari.ru> | 2022-08-21 18:39:15 +0400 |
commit | b869349518f0504c9822a2eb112f0eab3c8ca8ed (patch) | |
tree | cb7c8b343f01b7ec0db659bfbe964bfdda50ce3e | |
parent | a75859f4a37a40c136b87f77c580b757b7c631b0 (diff) | |
download | kit-b869349518f0504c9822a2eb112f0eab3c8ca8ed.zip |
test
-rw-r--r-- | .github/workflows/build_and_test.yml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index c4fd60d..2b5d0a3 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -67,8 +67,16 @@ jobs: cmake --build build --config $BUILD_TYPE working-directory: ./source/test/integration/${{ matrix.name }} - - name: Run + - name: Run tests + if: runner.os != 'Windows' shell: bash run: | ctest -V -C $BUILD_TYPE working-directory: ./source/test/integration/${{ matrix.name }}/build + + - name: Run tests on Windows + if: runner.os == 'Windows' + shell: bash + run: | + ctest -V + working-directory: ./source/test/integration/${{ matrix.name }}/build |