Relax sendability / improve default main actor isolation compatibility #1014
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '*' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| library: | |
| runs-on: macos-15 | |
| env: | |
| ENABLE_ALL_TRAITS: 1 | |
| strategy: | |
| matrix: | |
| xcode: | |
| - '16.4' | |
| variation: | |
| - ios | |
| - macos | |
| - tvos | |
| - watchos | |
| - examples | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Select Xcode ${{ matrix.xcode }} | |
| run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app | |
| - name: Skip macro validation | |
| run: defaults write com.apple.dt.Xcode IDESkipMacroFingerprintValidation -bool YES | |
| - name: Run tests | |
| run: make test-${{ matrix.variation }} |