Skip to content

Commit

Permalink
Merge pull request #6 from quassummanus/github-workflow-build-and-test
Browse files Browse the repository at this point in the history
Added Github Action to Build and Test the package
  • Loading branch information
bring-shrubbery authored Aug 2, 2021
2 parents 91faaf7 + e5fac56 commit 8f71c6a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/swift-build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build Swift Package

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
# TODO: Re-enable this line when tests are added
# - name: Run tests
# run: swift test -v

0 comments on commit 8f71c6a

Please sign in to comment.