Skip to content

Add: Stabilize output file content #73

Add: Stabilize output file content

Add: Stabilize output file content #73

Workflow file for this run

name: Coverage
on: [pull_request, push]
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/[email protected]
- name: Install Rust
run: rustup update stable
- name: Code Coverage
run: cargo install cargo-tarpaulin && cargo tarpaulin --all
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info