From 15e7de3abdeff958c8f07e80b1f76538f341fcfc Mon Sep 17 00:00:00 2001 From: Harrand Date: Sat, 18 May 2024 17:59:36 +0100 Subject: [PATCH] [ci] attempt to separate out run-tests into a separate job --- .github/workflows/build_linux.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 7b502d9..be54428 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -42,7 +42,14 @@ jobs: with: name: psyc_${{ matrix.compiler }}_${{ matrix.build_config }} path: ./cpp/build/ci_${{ matrix.build_config }}/psyc - + run_tests: + strategy: + matrix: + build_config: ['debug', 'release'] + compiler: ['clang-18', 'gcc-13'] + runs-on: ubuntu-24.04 + needs: build + steps: - name: 'Run Tests' uses: ./.github/actions/run_tests with: