There was an error while loading. Please reload this page.
2 parents 0f9d484 + 359f6cb commit 80c60d7Copy full SHA for 80c60d7
1 file changed
.github/workflows/main.yml
@@ -275,3 +275,21 @@ jobs:
275
run: "uv run nox --python ${{ matrix.python-version }} -v -k 'not nospeedups' --install-only"
276
- name: "Run nox"
277
run: "uv run nox --python ${{ matrix.python-version }} --no-install -k 'not nospeedups' -- -r aR -k 'not redis'"
278
+
279
+ alls-green:
280
+ name: "all required checks passed"
281
+ runs-on: "ubuntu-latest"
282
+ if: always()
283
284
+ needs:
285
+ - linux
286
+ - windows
287
+ - macos
288
+ - lint
289
+ - msrv
290
291
+ steps:
292
+ - name: Decide whether the needed jobs succeeded or failed
293
+ uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
294
+ with:
295
+ jobs: ${{ toJSON(needs) }}
0 commit comments