We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b0b4b35 + 8d3c781 commit 12dd9c4Copy full SHA for 12dd9c4
2 files changed
.github/workflows/ci.yml
@@ -42,3 +42,15 @@ jobs:
42
with:
43
fail_ci_if_error: true
44
token: ${{ secrets.CODECOV_TOKEN }}
45
+
46
+ completion-ci:
47
+ needs: build
48
+ runs-on: ubuntu-latest
49
+ if: always() # Run even if one matrix job fails
50
+ steps:
51
+ - name: Check matrix job status
52
+ run: |-
53
+ if ! ${{ needs.build.result == 'success' }}; then
54
+ echo "One or more matrix jobs failed"
55
+ exit 1
56
+ fi
.github/workflows/lint.yml
@@ -41,3 +41,15 @@ jobs:
41
- uses: pre-commit-ci/lite-action@v1.1.0
if: always()
+ completion-lint:
0 commit comments