Skip to content

Add Swift 6 support #70

Add Swift 6 support

Add Swift 6 support #70

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-xcode-15:
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_15.4.app/Contents/Developer
steps:
- uses: actions/checkout@v1
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 15.4
- name: Run iOS tests
run: make test-ios DEVICE="iPhone 15"
- name: Run tvOS tests
run: make test-tvos
build-xcode-16:
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer
steps:
- uses: actions/checkout@v1
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: 16.2
- name: Run iOS tests
run: make test-ios DEVICE="iPhone 16"
- name: Run tvOS tests
run: make test-tvos