From 053231b519ec1565d5b92aaed1353833c8ae8cc3 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sat, 2 Nov 2024 11:53:06 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64772bc9..f3ce6f6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: uses: actions/checkout@v4 - name: CMake - shell: cmd + shell: pwsh run: | mkdir build cd build @@ -135,12 +135,12 @@ jobs: -D CMAKE_CXX_STANDARD=${{ matrix.config.CXX_STANDARD }} .. - name: Build - shell: cmd + shell: pwsh run: | cd build cmake --build . --parallel --config ${{ matrix.config.BUILD_TYPE }} - name: Tests - shell: cmd + shell: pwsh run: ctest -VV -C {{ matrix.config.BUILD_TYPE }} --test-dir build/tests --build-run-dir build/${{ matrix.config.BUILD_TYPE }} --no-tests=error