fix some doc test error (#290) #154
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: Code Coverage | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '**.md' | |
- '**.png' | |
env: | |
RUST_TOOLCHAIN: nightly | |
TOOLCHAIN_PROFILE: minimal | |
jobs: | |
coverage: | |
name: Run cargo coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: ${{ env.TOOLCHAIN_PROFILE }} | |
toolchain: ${{ env.RUST_TOOLCHAIN }} | |
override: true | |
components: llvm-tools-preview | |
- name: Install grcov | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: grcov | |
- name: Cache | |
uses: Swatinem/rust-cache@v1 | |
- name: Run cargo test | |
run: sudo bash -c "ulimit -Sl 512 && ulimit -Hl 512 && sudo -u runner RUSTUP_TOOLCHAIN=nightly RUSTFLAGS="-Cinstrument-coverage" LLVM_PROFILE_FILE="coverage-%p-%m.profraw" /home/runner/.cargo/bin/cargo test --all-features" | |
- name: Run grcov | |
run: grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "*cargo*" -o lcov.info | |
- name: Upload coverage | |
run: bash <(curl -s https://codecov.io/bash) -f lcov.info |