Add support for m4b format #231
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: Test Coverage | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
test: | |
name: Measure Test Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Polaris | |
uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
- name: Run Tarpaulin | |
uses: actions-rs/[email protected] | |
with: | |
args: "--all-features --ignore-tests" | |
out-type: Xml | |
timeout: 240 | |
- name: Upload Results | |
uses: codecov/codecov-action@v2 | |
with: | |
fail_ci_if_error: true |