Skip to content

fix(deps): update rust crate kdl to v6.3.4 #29

fix(deps): update rust crate kdl to v6.3.4

fix(deps): update rust crate kdl to v6.3.4 #29

Workflow file for this run

name: coverage
on:
push:
branches: ["main"]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
- run: rustup update stable
- run: rustup component add llvm-tools-preview --toolchain stable-x86_64-unknown-linux-gnu
- uses: Swatinem/rust-cache@v2
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: mise run coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: codecov.json
fail_ci_if_error: true