Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b2a9b commit edb3239Copy full SHA for edb3239
1 file changed
.github/workflows/test.yml
@@ -139,3 +139,21 @@ jobs:
139
- uses: actions/checkout@v6
140
- uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
141
- uses: jupyterlab/maintainer-tools/.github/actions/check-links@v1
142
+
143
+ tests_check: # This job does nothing and is only used for the branch protection
144
+ if: always()
145
+ needs:
146
+ - test-linux
147
+ - test-macos
148
+ - test-flatpak
149
+ - make_sdist
150
+ - test_sdist
151
+ - static
152
+ - check_release
153
+ - link_check
154
+ runs-on: ubuntu-latest
155
+ steps:
156
+ - name: Decide whether the needed jobs succeeded or failed
157
+ uses: re-actors/alls-green@release/v1
158
+ with:
159
+ jobs: ${{ toJSON(needs) }}
0 commit comments