From 4943e2911166dc2ce3814d230eed7fb7bcb9103e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurenz=20Altenm=C3=BCller?= Date: Sat, 25 Jan 2025 20:45:39 +0100 Subject: [PATCH] simplify "required" jobs --- .github/workflows/ci.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d8a6a31..eb6135d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -77,3 +77,8 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 - uses: pre-commit/action@v3.0.1 + required: + runs-on: ubuntu-latest + needs: [test, examples, determinism, lint] # this automatically depends on all matrix jobs + steps: + - run: echo "All dependent jobs are required to pass"