Skip to content

Commit

Permalink
chore: add all-checks job to CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
art049 committed Mar 19, 2024
1 parent e75634b commit 0d1fdce
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand All @@ -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

0 comments on commit 0d1fdce

Please sign in to comment.