Skip to content

Fixes a compiler error when swift 6's strict concurrency checking is enabled #253

Fixes a compiler error when swift 6's strict concurrency checking is enabled

Fixes a compiler error when swift 6's strict concurrency checking is enabled #253

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- '.editorconfig'
- '.spi.yml'
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: macos-15
env:
DEVELOPER_DIR: /Applications/Xcode_16.2.app
strategy:
matrix:
destination:
- "platform=macOS"
- "platform=macOS,variant=Mac Catalyst"
- "platform=iOS Simulator,name=iPhone 16"
- "platform=tvOS Simulator,name=Apple TV"
- "platform=watchOS Simulator,name=Apple Watch Series 10 (42mm)"
- "platform=visionOS Simulator,name=Apple Vision Pro"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme Neon -destination "${{ matrix.destination }}" test | xcbeautify