Skip to content

chore(ci)(deps): bump actions/upload-artifact from 4 to 7 #339

chore(ci)(deps): bump actions/upload-artifact from 4 to 7

chore(ci)(deps): bump actions/upload-artifact from 4 to 7 #339

Workflow file for this run

# Code Coverage
# Track test coverage over time
name: Coverage
on:
push:
branches: [main, next]
pull_request:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: Swatinem/rust-cache@v2
- name: Generate coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload to Codecov
uses: codecov/codecov-action@v5
continue-on-error: true
with:
files: ./lcov.info
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
- name: Generate coverage summary
run: |
cargo llvm-cov --all-features --workspace --json --output-path coverage.json
echo "Coverage report generated"