From 0d1fdceed60e44941c8cab41fe09b84ddc443b87 Mon Sep 17 00:00:00 2001 From: Arthur Pastel Date: Tue, 19 Mar 2024 17:44:41 -0400 Subject: [PATCH] chore: add all-checks job to CI workflow --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b10086..8d13451 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,6 @@ jobs: python-version: "3.7" pytest-version: "<8.1.1" - steps: - uses: actions/checkout@v4 - name: "Set up Python ${{ matrix.python-version }}" @@ -62,3 +61,11 @@ jobs: run: pip uninstall -y pytest-benchmark - name: Run tests run: pytest -vs + + all-checks: + runs-on: ubuntu-latest + steps: + - run: echo "All CI checks passed." + needs: + - static-analysis + - tests