Skip to content

Support for Swift 5.9 #296

Support for Swift 5.9

Support for Swift 5.9 #296

Workflow file for this run

name: SwiftPM
on:
push:
branches: [main]
pull_request:
branches: ['*']
jobs:
Xcode:
strategy:
matrix:
xcode_version: ['14.3.1', '15.2']
runs-on: macos-13
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:
- uses: actions/checkout@v3
- run: xcodebuild -version
- run: swift -version
- run: swift test
Linux:
strategy:
matrix:
tag: ['5.8', '5.9']
runs-on: ubuntu-latest
container:
image: swift:${{ matrix.tag }}
steps:
- uses: actions/checkout@v3
- run: swift test --parallel