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 ec261f1
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Swift

on: push

jobs:
Build_and_Test:

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 ec261f1

Please sign in to comment.