From 8a39d968d968c5487d9560caa13164b64a95fe9b Mon Sep 17 00:00:00 2001 From: hiroshihorie <548776+hiroshihorie@users.noreply.github.com> Date: Fri, 23 Feb 2024 03:33:23 +0900 Subject: [PATCH] don't fail fast --- .github/workflows/testing-matrix.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing-matrix.yaml b/.github/workflows/testing-matrix.yaml index 5d51344bc..5b53d72aa 100644 --- a/.github/workflows/testing-matrix.yaml +++ b/.github/workflows/testing-matrix.yaml @@ -7,6 +7,7 @@ on: jobs: basic_test: strategy: + fail-fast: false matrix: platform: [iOS, macOS] xcode-version: [14.2, 15.2] @@ -26,8 +27,8 @@ jobs: - name: Show SDKs run: xcodebuild -showsdks - - name: List Schemes - run: xcodebuild -list + # - name: List Schemes + # run: xcodebuild -list - name: Execute Test run: xcodebuild test -scheme LiveKit -destination 'platform=${{ matrix.platform }}'