Skip to content

test(ci): add lazyfs and bitflip to pre-built docker image #6

test(ci): add lazyfs and bitflip to pre-built docker image

test(ci): add lazyfs and bitflip to pre-built docker image #6

Workflow file for this run

name: Coverage
on:
push:
branches:
- master
pull_request:
branches: [master]
env:
CI_RUST_TOOLCHAIN: 1.70.0
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: Swatinem/rust-cache@v2
with:
shared-key: "xline"
- run: sudo bash ./.github/scripts/install_deps.sh
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --lib --workspace --codecov --output-path codecov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: codecov.info
fail_ci_if_error: true