Skip to content

Commit

Permalink
Force not fail-fast
Browse files Browse the repository at this point in the history
GitHub actions actually defaults fail-fast to true when not specified.
  • Loading branch information
danielrbradley committed Apr 30, 2024
1 parent a4d36a8 commit 392d1ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
# Use big runner for dotnet and nodejs because we need more memory and more compute, respectively
runs-on: ${{ (matrix.language == 'dotnet' || matrix.language == 'nodejs' || matrix.language == 'go') && 'pulumi-ubuntu-8core' || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
language:
- nodejs
Expand Down Expand Up @@ -160,6 +161,7 @@ jobs:
# Use big runner for dotnet and nodejs because we need more memory and more compute, respectively
runs-on: ${{ (matrix.language == 'dotnet' || matrix.language == 'nodejs' || matrix.language == 'go') && 'pulumi-ubuntu-8core' || 'ubuntu-latest' }}
strategy:
fail-fast: false
matrix:
language:
- nodejs
Expand Down Expand Up @@ -202,6 +204,7 @@ jobs:
runs-on: ubuntu-latest
name: Test pulumi/examples
strategy:
fail-fast: false
matrix:
language:
- nodejs
Expand Down

0 comments on commit 392d1ed

Please sign in to comment.