Skip to content

Add CI workflow (swift build + test) #1

Add CI workflow (swift build + test)

Add CI workflow (swift build + test) #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_26.app || sudo xcode-select -s /Applications/Xcode.app
- name: Build
run: swift build -v
- name: Test
run: swift test