Skip to content

chore(deps): bump clap_complete from 4.6.2 to 4.6.3 #104

chore(deps): bump clap_complete from 4.6.2 to 4.6.3

chore(deps): bump clap_complete from 4.6.2 to 4.6.3 #104

Workflow file for this run

name: Coverage
on:
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: coverage-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v6.0.2
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
run: cargo install cargo-llvm-cov --locked
- name: Generate coverage report
run: cargo llvm-cov --workspace --all-features --lcov --output-path lcov.info
- name: Upload coverage artifact
uses: actions/upload-artifact@v7.0.1
with:
name: coverage-lcov
path: lcov.info