ReadabilityFramework/.github/workflows/swift.yml
2022-05-26 14:41:06 +08:00

20 lines
306 B
YAML

name: Swift
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v