Skip to content

Commit

Permalink
Add GitHub Actions support
Browse files Browse the repository at this point in the history
  • Loading branch information
donnywdavis committed Mar 28, 2021
1 parent fa8e577 commit 4b3bac2
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:
push

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: swift build --build-tests --disable-automatic-resolution -v
- name: Run tests
run: swift test --disable-automatic-resolution -v

0 comments on commit 4b3bac2

Please sign in to comment.