Add workflow

This commit is contained in:
Matěj Kašpar Jirásek 2020-02-12 22:43:20 +01:00 committed by GitHub
parent 35732b75b1
commit d2ad8cde0f
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/swift.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Build & test
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build
- name: Test
run: swift test