Skip to content

Update clap requirement from 3.0.7 to 4.4.7 #71

Update clap requirement from 3.0.7 to 4.4.7

Update clap requirement from 3.0.7 to 4.4.7 #71

Workflow file for this run

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