-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to GitHub Actions * Update swift.yml * :/ * Lets give this a whirl. * update test name. * Delete circle ci in favor of github. * Update readme. * Comment out address as it is broken for swift packages
- Loading branch information
1 parent
03e1966
commit 9b79f5b
Showing
3 changed files
with
47 additions
and
28 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: test | ||
on: | ||
- pull_request | ||
jobs: | ||
xenial-5-1: | ||
container: | ||
image: vapor/swift:5.1-xenial | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
xenial-5-0: | ||
container: | ||
image: vapor/swift:5.0-xenial | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
bionic-5-1: | ||
container: | ||
image: vapor/swift:5.1-bionic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
bionic-5-0: | ||
container: | ||
image: vapor/swift:5.0-bionic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test | ||
thread: | ||
container: | ||
image: vapor/swift:5.1-bionic | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- run: swift test --sanitize=thread | ||
# address: | ||
# container: | ||
# image: vapor/swift:5.1-bionic | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@master | ||
# - run: swift test --sanitize=address |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters