Skip to content

Swift 6 Support

Swift 6 Support #24

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
# Run on all PRs
jobs:
unit:
name: ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os:
# - ubuntu-latest
- macos-latest
swift:
- "5.10"
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/setup-swift@e1dca7c4a36344146bbc2803f0d538462477bb37 # 2.0.0
with:
swift-version: ${{ matrix.swift }}
- uses: actions/checkout@v4
- name: Build
run: swift build
- name: Run tests
run: swift test