Skip to content

Possible test fix

Possible test fix #10

Workflow file for this run

name: 🧪 Tests
on: [push, pull_request]
jobs:
build:
name: Swift ${{ matrix.swift }} on ${{ matrix.os }}
strategy:
matrix:
os: [macos-15]
swift: ["6.0"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup Swift (Linux only)
if: runner.os == 'Linux'
uses: swift-actions/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
- name: Build
run: swift build --build-tests
- name: Run tests
run: swift test --parallel
- name: Test coverage
run: swift test --parallel --enable-code-coverage