Skip to content

add GitHub workflow

add GitHub workflow #3

Workflow file for this run

name: Check
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
check:
runs-on: macos-latest
# TODO Xcode versions (multiple?)
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: script/format/check
- run: script/lint/check
- run: swift build
- run: swift test