diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 052a639..2bd2179 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 AttributedText -destination 'generic/platform=${{ matrix.os }}' build lint: runs-on: ubuntu-24.04-arm container: swift:latest