From 5fed8ec075af5b0f9cd2ce714fa483db877fa2be Mon Sep 17 00:00:00 2001 From: "Mathias L. Baumann" Date: Wed, 5 Mar 2025 13:48:28 +0100 Subject: [PATCH] Update nox-all CI job Signed-off-by: Mathias L. Baumann --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e6c37c1f..9fb3a938 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -88,10 +88,14 @@ jobs: # The job name should match the name of the `nox` job. name: Test with nox needs: ["nox"] + # We skip this job only if nox was also skipped + if: always() && needs.nox.result != 'skipped' runs-on: ubuntu-20.04 + env: + DEPS_RESULT: ${{ needs.nox.result }} steps: - - name: Return true - run: "true" + - name: Check matrix job result + run: test "$DEPS_RESULT" = "success" nox-cross-arch: name: Cross-arch tests with nox