From 292a02b979f73e9ed856a07347d02d6880a80529 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20S=C3=A1=20Menezes?= Date: Mon, 24 Jun 2024 15:36:47 +0100 Subject: [PATCH] Update build-unix.yml --- .github/workflows/build-unix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-unix.yml b/.github/workflows/build-unix.yml index a78a44c..9a4f154 100644 --- a/.github/workflows/build-unix.yml +++ b/.github/workflows/build-unix.yml @@ -23,7 +23,7 @@ jobs: - name: Configure project run: mkdir build && cd build && cmake .. -DBUILD_TESTING=1 -DClang_DIR=/usr/lib/cmake/clang-14 -DLLVM_DIR=/usr/lib/llvm-14/lib/cmake/llvm - name: Build project - run: make -j4 + run: cd build && make -j4 - name: Run tests if: ${{ inputs.testing == true }} run: cd build/unit && ctest -j4 --output-on-failure --progress .