Skip to content

Improve package configuration, documentation, and CI workflow #4

Improve package configuration, documentation, and CI workflow

Improve package configuration, documentation, and CI workflow #4

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
macOS:
name: macOS
runs-on: [self-hosted, macos]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
linux:
name: Linux
runs-on: ubuntu-latest
container: swift:6.0
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v