We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4156ccb commit 75d4402Copy full SHA for 75d4402
.github/workflows/test-suite.yml
@@ -11,7 +11,7 @@ jobs:
11
tests:
12
name: "Python ${{ matrix.python-version }} ${{ matrix.os }}"
13
runs-on: "${{ matrix.os }}"
14
- timeout-minutes: 30
+ timeout-minutes: 10
15
strategy:
16
fail-fast: false
17
matrix:
@@ -38,3 +38,14 @@ jobs:
38
- name: "Enforce coverage"
39
run: "scripts/coverage"
40
shell: bash
41
+
42
+ # https://github.com/marketplace/actions/alls-green#why
43
+ check:
44
+ if: always()
45
+ needs: [tests]
46
+ runs-on: ubuntu-latest
47
+ steps:
48
+ - name: Decide whether the needed jobs succeeded or failed
49
+ uses: re-actors/alls-green@release/v1
50
+ with:
51
+ jobs: ${{ toJSON(needs) }}
0 commit comments