From 60d1a4d91f50e4533990ca2af8bbbfe6c815343d Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Mon, 22 Apr 2024 15:48:58 +0800 Subject: [PATCH] fix coverage --- .github/workflows/coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e1483f6693..1e9b54ce69 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -15,11 +15,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Rust - run: rustup toolchain install nightly-2023-09-10 --profile minimal --component llvm-tools-preview + run: rustup toolchain install nightly-2024-04-10 --profile minimal --component llvm-tools-preview - uses: Swatinem/rust-cache@v2 - uses: taiki-e/install-action@cargo-llvm-cov - name: Generate code coverage - run: cargo +nightly-2023-09-10 llvm-cov --all-features --workspace --doctests --lcov --output-path lcov.info + run: cargo +nightly-2024-04-10 llvm-cov --all-features --workspace --doctests --lcov --output-path lcov.info - name: Upload coverage to Codecov uses: codecov/codecov-action@v3 continue-on-error: true