Skip to content

Feature/Sidecar communication #105

Feature/Sidecar communication

Feature/Sidecar communication #105

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
branches: [ main ]
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
- run: sudo bash ./.github/scripts/install_deps.sh
- uses: Swatinem/rust-cache@v2
- 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