From dae541113762dfdeaad326f9e4e180d59d7f5343 Mon Sep 17 00:00:00 2001 From: gumob Date: Fri, 23 Aug 2024 21:57:34 +0900 Subject: [PATCH] ci(GitHub Actions): Add support for additional platforms in the Test SPM job Previously, the Test SPM job only ran on macOS, iOS, and tvOS. This commit adds support for running the test on visionOS, watchOS, and Catalyst as well. The change was made to improve the comprehensive testing of our project across multiple platforms. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 01420db..d88e961 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -247,6 +247,7 @@ jobs: - name: Test SPM run: swift test -c debug 2>&1 | ${{ matrix.outputFilter }} needs: [test_macOS, test_iOS, test_tvOS] + # needs: [test_macOS, test_iOS, test_tvOS, test_visionOS, test_watchOS, test_Catalyst] carthage: runs-on: macos-14