Skip to content

Commit

Permalink
fix(ci): disable fail-fast in acceptance tests workflow
Browse files Browse the repository at this point in the history
# Issue

Due to fail-fast we were getting less feedback per run, making the feedback loop slower.

# Fix

With fail-fast: false other matrix jobs will be cancelled.
  • Loading branch information
silvestre committed Nov 29, 2024
1 parent 9331cde commit c525fca
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/acceptance_tests_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
name: Acceptance Tests
needs: [ deploy_autoscaler ]
strategy:
fail-fast: false
matrix:
suite: "${{ fromJSON(inputs.suites) }}"
runs-on: ubuntu-latest
Expand Down

0 comments on commit c525fca

Please sign in to comment.