From 63593ec0910539ee819a13d06a3b51ad12e8fc6b Mon Sep 17 00:00:00 2001 From: Me-Phew Date: Thu, 14 Nov 2024 23:49:42 +0100 Subject: [PATCH] ci: correct directory path --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4948b95..aab6f87 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -36,7 +36,7 @@ jobs: run: cmake --preset linux-release && cmake --build --preset linux-release-build - name: Run tests - run: cd ./build/linux-release/${{ env.PROJECT_NAME }} && ctest -C Debug -T test --output-on-failure + run: cd ./build/linux-release && ctest -C Debug -T test --output-on-failure - name: Compile project for Windows using CMake run: cmake --preset windows-release && cmake --build --preset windows-release-build