summaryrefslogtreecommitdiff
path: root/.github/workflows/build_and_test.yml
diff options
context:
space:
mode:
authorMitya Selivanov <0x7fffff@guattari.ru>2022-08-21 18:39:15 +0400
committerMitya Selivanov <0x7fffff@guattari.ru>2022-08-21 18:39:15 +0400
commitb869349518f0504c9822a2eb112f0eab3c8ca8ed (patch)
treecb7c8b343f01b7ec0db659bfbe964bfdda50ce3e /.github/workflows/build_and_test.yml
parenta75859f4a37a40c136b87f77c580b757b7c631b0 (diff)
downloadkit-b869349518f0504c9822a2eb112f0eab3c8ca8ed.zip
test
Diffstat (limited to '.github/workflows/build_and_test.yml')
-rw-r--r--.github/workflows/build_and_test.yml10
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