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 8d7c6df commit d1f38bbCopy full SHA for d1f38bb
.github/workflows/ci.yml
@@ -197,3 +197,15 @@ jobs:
197
fail_ci_if_error: true
198
token: ${{ secrets.CODECOV_TOKEN }}
199
if: ${{ github.event_name == 'pull_request' || github.event_name == 'push' }}
200
+
201
+ completion:
202
+ needs: build
203
+ runs-on: ubuntu-latest
204
+ if: always() # Run even if one matrix job fails
205
+ steps:
206
+ - name: Check matrix job status
207
+ run: |-
208
+ if ! ${{ needs.build.result == 'success' }}; then
209
+ echo "One or more matrix jobs failed"
210
+ exit 1
211
+ fi
0 commit comments