File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 28
28
- name : Run the tests
29
29
run : |
30
30
pytest -vv --integration_tests=true tests
31
+
32
+ integration_check : # This job does nothing and is only used for the branch protection
33
+ if : always()
34
+ needs :
35
+ - build
36
+ runs-on : ubuntu-latest
37
+ steps :
38
+ - name : Decide whether the needed jobs succeeded or failed
39
+ uses : re-actors/alls-green@release/v1
40
+ with :
41
+ jobs : ${{ toJSON(needs) }}
Original file line number Diff line number Diff line change @@ -137,3 +137,18 @@ jobs:
137
137
steps :
138
138
- uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
139
139
- uses : jupyterlab/maintainer-tools/.github/actions/test-sdist@v1
140
+
141
+ python_tests_check : # This job does nothing and is only used for the branch protection
142
+ if : always()
143
+ needs :
144
+ - build
145
+ - pre-commit
146
+ - test_prereleases
147
+ - make_sdist
148
+ - test_sdist
149
+ runs-on : ubuntu-latest
150
+ steps :
151
+ - name : Decide whether the needed jobs succeeded or failed
152
+ uses : re-actors/alls-green@release/v1
153
+ with :
154
+ jobs : ${{ toJSON(needs) }}
You can’t perform that action at this time.
0 commit comments