Skip to content

Link README download to landing page #25

Link README download to landing page

Link README download to landing page #25

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-build:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Install Swift 6.2
uses: swift-actions/setup-swift@v2
with:
swift-version: '6.2'
- name: Swift Format
run: swift format lint --strict --recursive Sources/
- name: SwiftLint
run: brew install swiftlint && swiftlint lint --strict
- name: Build
run: swift build
- name: Test
run: swift test