Removed unnecessary return statements. #122
Workflow file for this run
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: build | |
on: [push, pull_request] | |
jobs: | |
run-test: | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
swift-version: [5.0, 4.2, 4.0] | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/cache@v1 | |
id: bundler-cache | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-gems- | |
- name: build config | |
run: make build_config | |
- name: Build debug | |
run: make debug-build | |
- name: Build lib | |
run: make debug-lib-build | |
- name: Run tests | |
env: | |
SWIFT_VERSION: ${{ matrix.swift-version }} | |
run: make test | |
- name: code-coverage | |
run: make code-coverage |