From b93081d21fb3695384f213b184541b131b49eb7d Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 23 Jun 2022 12:45:46 +0200 Subject: [PATCH] tests: Run tests in correct folder --- .github/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 399361a..037abe6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,6 +36,7 @@ jobs: - name: 🛠️ Build run: | + cd tests mkdir -p build cd build CC=gcc-11 CXX=g++-11 cmake \ @@ -47,5 +48,5 @@ jobs: - name: 🧪 Perform Unit Tests run: | - cd build + cd tests/build ctest \ No newline at end of file