Create build.yml

This commit is contained in:
Zsombor Szabo 2020-02-02 17:26:26 +02:00 committed by GitHub
parent 1602e89626
commit ef0677f001
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 15 additions and 0 deletions

15
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,15 @@
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