Files
sonya/.github/workflows/swift.yml
T
2026-04-22 09:32:12 +09:00

24 lines
474 B
YAML

# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift
name: Swift
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: swift build -v
- name: Run tests
working-directory:: Sources/sonyalib
run: swift test -v