From 084376d139c8695f99bda3e8749085dac2d307dc Mon Sep 17 00:00:00 2001 From: Seungbin Oh Date: Wed, 28 Apr 2021 15:34:57 +0900 Subject: [PATCH] Add fail-fast --- .github/workflows/Test-Linux.yml | 1 + .github/workflows/Test-macOS.yml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Test-Linux.yml b/.github/workflows/Test-Linux.yml index ab804da..cac8a2c 100644 --- a/.github/workflows/Test-Linux.yml +++ b/.github/workflows/Test-Linux.yml @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-20.04 container: swift:${{ matrix.swift }}-focal strategy: + fail-fast: false matrix: swift: ["5.2", "5.3"] diff --git a/.github/workflows/Test-macOS.yml b/.github/workflows/Test-macOS.yml index f069116..7638514 100644 --- a/.github/workflows/Test-macOS.yml +++ b/.github/workflows/Test-macOS.yml @@ -12,8 +12,9 @@ jobs: runs-on: macos-latest strategy: + fail-fast: false matrix: - swift: ["5.2", "5.3"] + swift: ["5.2"] steps: - uses: actions/checkout@v2