Skip to content

Commit

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

* comments
  • Loading branch information
julienrbrt authored Apr 25, 2024
1 parent af41d3d commit 0018c38
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 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,11 +29,11 @@ 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 ]
os: [ubuntu-latest, macos-latest]
test-path: ${{fromJson(needs.pre-test.outputs.matrix)}}
steps:
- uses: actions/checkout@v4
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/setup-go@v5
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 0018c38

Please sign in to comment.