From c571cb888b8ee90abd8344a0bbfbe2e42963bd05 Mon Sep 17 00:00:00 2001 From: Albin Johansson Date: Fri, 10 May 2024 11:33:32 +0200 Subject: [PATCH] Fix test step --- .github/workflows/macos.yml | 7 ++++--- .github/workflows/ubuntu.yml | 7 ++++--- .github/workflows/windows.yml | 6 +++--- 3 files changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 0ffa277159..bd9da22e29 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -69,6 +69,7 @@ jobs: - name: Install run: ninja -C build install - - name: Run tests - working-directory: ./build/test - run: ./TactileTests + - name: Run core tests + working-directory: ./build/debug + shell: cmd + run: ./tactile-core-test diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index d7b42f2159..289fba7126 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -103,6 +103,7 @@ jobs: - name: Install run: ninja -C build install - - name: Run tests - working-directory: ./build/test - run: ./TactileTests + - name: Run core tests + working-directory: ./build/debug + shell: cmd + run: ./tactile-core-test diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c45f1ee5c4..13dc35cd3c 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -69,7 +69,7 @@ jobs: - name: Install run: ninja -C build install - - name: Run tests - working-directory: ./build/test + - name: Run core tests + working-directory: ./build/debug shell: cmd - run: TactileTests.exe + run: tactile-core-test.exe