Skip to content

Commit

Permalink
ci: don't fail fast (#4106) (#4107)
Browse files Browse the repository at this point in the history
* ci: don't fail fast

* comments

(cherry picked from commit 0018c38)

Co-authored-by: Julien Robert <[email protected]>
  • Loading branch information
mergify[bot] and julienrbrt committed May 3, 2024
1 parent aad0f97 commit 2d27059
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
pull_request:
push:
paths-ignore:
- '**.md'
- "**.md"
branches:
- main
- release/*
Expand All @@ -29,9 +29,9 @@ jobs:
runs-on: ${{ matrix.os }}
needs: pre-test
if: fromJSON(needs.pre-test.outputs.matrix)[0] != null
continue-on-error: false
continue-on-error: true
strategy:
fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
test-path: ${{fromJson(needs.pre-test.outputs.matrix)}}
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/setup-go@v4
if: env.GIT_DIFF
with:
go-version: 'stable'
go-version: "stable"

- name: Run Integration Tests
if: env.GIT_DIFF
Expand Down

0 comments on commit 2d27059

Please sign in to comment.