Skip to content

Commit d176d46

Browse files
committed
ci: Don't cancel other jobs
Github action will by default cancel all jobs in a matrix if one job fails. In our case we are still interested in the result of all the jobs.
1 parent 2d76387 commit d176d46

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/pr-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
runs-on: ubuntu-22.04
5151
needs: [ generate-matrix ]
5252
strategy:
53+
fail-fast: false
5354
matrix: ${{ fromJSON(needs.generate-matrix.outputs.matrix) }}
5455
if: needs.generate-matrix.outputs.matrix != ''
5556
steps:

0 commit comments

Comments
 (0)