Skip to content

Breaking: Swift 6 Adoption #37

Breaking: Swift 6 Adoption

Breaking: Swift 6 Adoption #37

Workflow file for this run

name: test
on:
pull_request:
push: { branches: [ main ] }
jobs:
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 --traits ClientNIO,ServerVapor --skip IntegrationTests