Skip to content

Commit b684c26

Browse files
committed
add tests_check
1 parent 19e6383 commit b684c26

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,18 @@ jobs:
7878
run: |
7979
pip install ".[test]"
8080
pytest || pytest --lf
81+
82+
tests_check: # This job does nothing and is only used for the branch protection
83+
if: always()
84+
needs:
85+
- build
86+
- lint
87+
- check_release
88+
- check_links
89+
- test_minimum_versions
90+
runs-on: ubuntu-latest
91+
steps:
92+
- name: Decide whether the needed jobs succeeded or failed
93+
uses: re-actors/alls-green@release/v1
94+
with:
95+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)