Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
btoms20 committed May 16, 2022
2 parents 7fe6b31 + 973ed8a commit 203dcd5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build+test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build & Test (macos & linux)

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

jobs:
build-macos:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

build-linux:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: swift-actions/setup-swift@v1
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v

0 comments on commit 203dcd5

Please sign in to comment.