Skip to content

Swift 6 migration

Swift 6 migration #364

Workflow file for this run

name: Swift Build
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.0'
- name: Get swift version
run: swift --version
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test