Update clap requirement from 3.0.7 to 4.4.7 #71
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: coverage | |
on: [ push ] | |
jobs: | |
test: | |
name: coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setting up rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: nightly | |
override: true | |
- name: Generate code coverage | |
run: | | |
cargo install cargo-tarpaulin | |
cargo tarpaulin --verbose --workspace --timeout 120 --out Xml --run-types Tests --run-types Doctests | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true |