Skip to content

Commit

Permalink
Merge pull request #2 from mkj-is/feature/ci
Browse files Browse the repository at this point in the history
Add GitHub actions configuration
  • Loading branch information
mkj-is authored Dec 27, 2019
2 parents 3c31a83 + fa1d277 commit b11cbf3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Swift

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit b11cbf3

Please sign in to comment.