Skip to content

fix(deps): update all non-major dependencies #129

fix(deps): update all non-major dependencies

fix(deps): update all non-major dependencies #129

Workflow file for this run

name: Coverage
on: [pull_request, push]
permissions:
contents: read
jobs:
coverage:
runs-on: ubuntu-24.04
env:
CARGO_TERM_COLOR: always
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Populate cache
uses: ./.github/workflows/cache
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- run: |
sudo apt-get update
sudo apt-get install -y gdb
# run coverage on tests
- run: cargo llvm-cov --workspace --codecov --output-path codecov.json --release
- name: Upload coverage to Codecov
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: codecov.json
fail_ci_if_error: true