diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index eb1e17f9..d947a253 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -183,4 +183,4 @@ jobs: - name: Test # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail - run: ctest --preset ${{ matrix.configuration }} + run: ctest --preset ${{ matrix.configuration }} -C ${{ matrix.configuration }} diff --git a/.github/workflows/integrity_checks.yml b/.github/workflows/integrity_checks.yml index 16631550..a95ccd9a 100644 --- a/.github/workflows/integrity_checks.yml +++ b/.github/workflows/integrity_checks.yml @@ -23,7 +23,7 @@ jobs: submodules: true - name: Install action-validator with asdf - uses: asdf-vm/actions/install@v3 + uses: asdf-vm/actions/install@v4 with: tool_versions: | action-validator 0.5.1 diff --git a/CMakePresets.json b/CMakePresets.json index 2f4531e0..a84cde68 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -48,7 +48,7 @@ { "name": "Release", "displayName": "Release", "configurePreset": "Release", "configuration": "Release" } ], "testPresets": [ - { "name": "Debug", "displayName": "Debug", "configurePreset": "Debug" }, - { "name": "Release", "displayName": "Release", "configurePreset": "Release" } + { "name": "Debug", "displayName": "Debug", "configurePreset": "Debug", "configuration": "Debug" }, + { "name": "Release", "displayName": "Release", "configurePreset": "Release", "configuration": "Release" } ] }