CI tests on DEBUG #1
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
name: Unit Tests | |
on: [ push, pull_request ] | |
jobs: | |
unittests_on_macOS: | |
name: Unit tests on macOS | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: swift build -v -c debug | |
- name: Run tests | |
run: swift test -v -c debug --filter CodableCSVTests | |
unittests_on_Ubuntu: | |
name: Unit tests on Ubuntu | |
runs-on: ubuntu-latest | |
container: | |
image: swift:latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: swift build -v -c debug | |
- name: Run tests | |
run: swift test -v -c debug --filter CodableCSVTests --enable-test-discovery |