diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b9bb68..496e4f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -107,8 +107,8 @@ jobs: working-directory: ${{ github.workspace }} run: cmake --build out\build\${{ matrix.build_type }} - - if: (${{ matrix.build_type }} == 'x64-Release') || (${{ matrix.build_type }} == 'x86-Release') + - if: (matrix.build_type == 'x64-Release') || (matrix.build_type == 'x86-Release') timeout-minutes: 10 name: 'Test' working-directory: ${{ github.workspace }} - run: ctest --preset=${{ matrix.build_type }} --test-dir out + run: ctest --preset=${{ matrix.build_type }}