Skip to content

Commit

Permalink
Add Github workflow for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gwynne committed Mar 16, 2020
1 parent 437401a commit c66cb77
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,26 @@
name: test
on:
- pull_request
jobs:
#sendgrid_macos:
# runs-on: macos-latest
# env:
# DEVELOPER_DIR: /Applications/Xcode_11.4_beta.app/Contents/Developer
# steps:
# - uses: actions/checkout@v2
# - run: brew install vapor/tap/vapor-beta
# - run: xcrun swift test --enable-test-discovery --sanitize=thread
sendgrid_xenial:
container:
image: vapor/swift:5.2-xenial
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: swift test --enable-test-discovery --sanitize=thread
sendgrid_bionic:
container:
image: vapor/swift:5.2-bionic
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: swift test --enable-test-discovery --sanitize=thread

0 comments on commit c66cb77

Please sign in to comment.