Skip to content

split tests in ci

split tests in ci #14

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: swift-actions/setup-swift@v2
with:
swift-version: "5.10"
- name: Run unit tests
run: swift test --filter "^(?!.*\bIntegrationTests\b).*" -v
- name: Run integration tests
run: swift test --filter IntegrationTests -v