소스 검색

[GitHub Actions] fail-fast: false

Norio Nomura 4 년 전
부모
커밋
0e4d2f8d3e
2개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      .github/workflows/swiftpm.yml
  2. 1 0
      .github/workflows/xcodebuild.yml

+ 2 - 0
.github/workflows/swiftpm.yml

@@ -18,6 +18,7 @@ on:
 jobs:
   Xcode:
     strategy:
+      fail-fast: false
       matrix:
         xcode_version: ['11.3.1', '11.7', '12']
     runs-on: macOS-10.15
@@ -30,6 +31,7 @@ jobs:
 
   Linux:
     strategy:
+      fail-fast: false
       matrix:
         tag: ['5.1', '5.2', '5.3']
     runs-on: ubuntu-latest

+ 1 - 0
.github/workflows/xcodebuild.yml

@@ -20,6 +20,7 @@ on:
 jobs:
   xcodebuild:
     strategy:
+      fail-fast: false
       matrix:
         xcode_version: ['11.3.1', '11.7', '12']
         xcode_flags: ['-scheme Base32 -enableCodeCoverage YES -parallel-testing-enabled NO test']