Files
starter-workflows/ci/swift.yml
T

16 lines
202 B
YAML
Raw Normal View History

2019-08-29 14:21:24 +07:00
name: Swift
on: [push]
jobs:
build:
runs-on: macOS-latest
steps:
2019-12-24 14:22:22 -08:00
- uses: actions/checkout@v2
2019-08-29 14:21:24 +07:00
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v