Skip to content

Add GitHub Actions workflow for macOS testing #1

Add GitHub Actions workflow for macOS testing

Add GitHub Actions workflow for macOS testing #1

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test-macos:
name: Test on macOS
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Show Swift version
run: swift --version
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v