From b04ab3bcd86366c7c402fc888d436ed34e4d852f Mon Sep 17 00:00:00 2001 From: zunda <47569369+zunda-pixel@users.noreply.github.com> Date: Thu, 5 Jun 2025 01:03:23 +0900 Subject: [PATCH 1/2] Update ci.yml --- .github/workflows/ci.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 052a639..b6924c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,11 +3,20 @@ name: CI on: pull_request jobs: - test: + build: runs-on: macos-15 + strategy: + fail-fast: false + matrix: + os: + - iOS + - macOS + - watchOS + - tvOS steps: - uses: actions/checkout@v4 - - run: swift build --build-tests + - run: sudo xcode-select --switch /Applications/Xcode_16.4.app + - run: xcodebuild -scheme ChatBubble -destination 'generic/platform=${{ matrix.os }}' build lint: runs-on: ubuntu-24.04-arm container: swift:latest From 00ab19e2fa406a68ac7cd694ec12feafb17d8970 Mon Sep 17 00:00:00 2001 From: zunda <47569369+zunda-pixel@users.noreply.github.com> Date: Thu, 5 Jun 2025 01:05:28 +0900 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6924c5..2bd2179 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v4 - run: sudo xcode-select --switch /Applications/Xcode_16.4.app - - run: xcodebuild -scheme ChatBubble -destination 'generic/platform=${{ matrix.os }}' build + - run: xcodebuild -scheme AttributedText -destination 'generic/platform=${{ matrix.os }}' build lint: runs-on: ubuntu-24.04-arm container: swift:latest