Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: test
on: [push]
jobs:
macOS:
runs-on:
macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_11.3.app/Contents/Developer
steps:
- uses: actions/checkout@v1
- name: Update Dependencies
run: swift package update
- name: Build
run: swift build
- name: Run Tests
run: swift test --sanitize=thread
- name: Performance Tests
run: swift test -c release
Bionic:
container:
image: swift:5.1-bionic
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Update Dependencies
run: swift package update
- name: Build
run: swift build
- name: Run Tests
run: swift test --sanitize=thread
- name: Performance Tests
run: swift test -c release