Merge pull request #273 from ABridoux/develop #1067
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: Swift | |
on: [push, pull_request] | |
jobs: | |
build_and_test: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: xcodebuild -scheme Scout | |
- name: Run tests | |
run: xcodebuild test -scheme Scout | |
- name: Code coverage | |
run: bash <(curl -s https://codecov.io/bash) |