Files
starter-workflows/ci/swift.yml
T
2020-01-30 14:52:55 +01:00

16 lines
202 B
YAML

name: Swift
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v