Skip to content

Initial commit

Initial commit #5

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
strategy:
matrix:
os: [macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Run tests
run: swift test --parallel