Skip to content

Breaking: Swift 6 Adoption #32

Breaking: Swift 6 Adoption

Breaking: Swift 6 Adoption #32

Workflow file for this run

name: test
on:
pull_request:
push: { branches: [ main ] }
jobs:
# Disabled because `latest` is only XCode 16.2 which has Swift 6.0.3
# macos-test:
# runs-on: macos-latest
# steps:
# - uses: maxim-lobanov/setup-xcode@v1
# with:
# xcode-version: latest
# - uses: actions/checkout@v4
# - name: Darwin build & test
# run: swift test --enable-all-traits --skip IntegrationTests
linux-test:
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v4
- name: Linux build & test
run: swift test --enable-all-traits --skip IntegrationTests