We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6ec57b + 04c2d07 commit c133e39Copy full SHA for c133e39
1 file changed
.github/workflows/test.yml
@@ -39,3 +39,21 @@ jobs:
39
- name: Nox ${{ matrix.noxenv }}
40
run: |
41
python -m nox -s ${{ matrix.noxenv }}
42
+
43
44
+ check:
45
+ # This job does nothing and is only used for the branch protection
46
+ # or multi-stage CI jobs, like making sure that all tests pass before
47
+ # a publishing job is started.
48
+ if: always()
49
50
+ needs:
51
+ - build
52
53
+ runs-on: ubuntu-latest
54
55
+ steps:
56
+ - name: Decide whether the needed jobs succeeded or failed
57
+ uses: re-actors/alls-green@release/v1
58
+ with:
59
+ jobs: ${{ toJSON(needs) }}
0 commit comments