Skip to content

Commit 92583eb

Browse files
committed
chore: add all-checks job to CI workflow
1 parent bb28e9f commit 92583eb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ jobs:
4545
python-version: "3.7"
4646
pytest-version: "<8.1.1"
4747

48-
4948
steps:
5049
- uses: actions/checkout@v4
5150
- name: "Set up Python ${{ matrix.python-version }}"
@@ -62,3 +61,11 @@ jobs:
6261
run: pip uninstall -y pytest-benchmark
6362
- name: Run tests
6463
run: pytest -vs
64+
65+
all-checks:
66+
runs-on: ubuntu-latest
67+
steps:
68+
- run: echo "All CI checks passed."
69+
needs:
70+
- static-analysis
71+
- tests

0 commit comments

Comments
 (0)