Skip to content

PYLABS-213 Upgrade with the new swift toolchain #19

PYLABS-213 Upgrade with the new swift toolchain

PYLABS-213 Upgrade with the new swift toolchain #19

Workflow file for this run

name: 'CI'
on:
push:
branches:
- master
pull_request:
branches:
- master
release:
types:
- created
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-11]
swift: ["5.5", "5.10"]
include:
- os: ubuntu-22.04
swift: ["6.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: fwal/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- name: Get swift version
run: swift --version
- uses: actions/checkout@v2
- name: Run tests
run: swift test