We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778e825 commit 23a86b7Copy full SHA for 23a86b7
1 file changed
.github/workflows/ci.yml
@@ -35,7 +35,7 @@ jobs:
35
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
36
pipx run nox -s pylint
37
38
- checks:
+ tests:
39
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }}
40
runs-on: ${{ matrix.runs-on }}
41
needs: [pre-commit]
@@ -69,3 +69,14 @@ jobs:
69
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
70
with:
71
token: ${{ secrets.CODECOV_TOKEN }}
72
+
73
+ status:
74
+ name: CI Pass
75
+ runs-on: ubuntu-latest
76
+ needs: [pre-commit, tests]
77
+ if: always()
78
+ steps:
79
+ - name: All required jobs passed
80
+ uses: re-actors/alls-green@release/v1
81
+ with:
82
+ jobs: ${{ toJSON(needs) }}
0 commit comments