From b869349518f0504c9822a2eb112f0eab3c8ca8ed Mon Sep 17 00:00:00 2001
From: Mitya Selivanov <0x7fffff@guattari.ru>
Date: Sun, 21 Aug 2022 18:39:15 +0400
Subject: test

---
 .github/workflows/build_and_test.yml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

(limited to '.github/workflows')

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
-- 
cgit v1.2.3