From b5b08aba16e015242c39dc3ea58ef91a66e83c5d Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Thu, 29 Jun 2023 20:20:04 +0700 Subject: [PATCH] ci: disable fail fast in job with matrix strategy --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 820c215..e3ace27 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,6 +8,7 @@ jobs: default-usage: runs-on: ${{ matrix.os }}-latest strategy: + fail-fast: false matrix: os: [windows, ubuntu, macos] steps: @@ -86,6 +87,7 @@ jobs: additional-flags-usage: runs-on: ${{ matrix.compiler == 'msvc' && 'windows' || 'ubuntu' }}-latest strategy: + fail-fast: false matrix: compiler: [gcc, msvc] steps: @@ -107,6 +109,7 @@ jobs: specified-compiler-usage: runs-on: ${{ matrix.os }}-latest strategy: + fail-fast: false matrix: os: [windows, ubuntu, macos] steps: @@ -129,6 +132,7 @@ jobs: specified-generator-usage: runs-on: ${{ matrix.os }}-latest strategy: + fail-fast: false matrix: os: [windows, ubuntu, macos] steps: