From b7a143d72ace5b9251dc359f00bede98d3c794fc Mon Sep 17 00:00:00 2001 From: Xintong Song Date: Mon, 23 Jun 2025 18:55:34 +0800 Subject: [PATCH] [infra] When on job failed in GHA do not cancel other in-progress jobs. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0535eca3..7b1ef0270 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,7 @@ jobs: name: java tests on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ 'macos-latest', 'ubuntu-latest' ] steps: @@ -64,6 +65,7 @@ jobs: name: python tests on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ 'macos-latest', 'ubuntu-latest' ] python-version: [ '3.9', '3.10', '3.11', '3.12' ]