Skip to content

Update test.yml

Update test.yml #197

Workflow file for this run

name: Test
on: [push]
jobs:
build:
strategy:
max-parallel: 5
fail-fast: false
matrix:
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- if: runner.os == 'Windows'
name: Setup Swift
uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.9.2-release
tag: 5.9.2-RELEASE
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: swift build
- name: Test
run: swift test