From eabd1be36718c788cb55ec48b1dfc9e16b638ce6 Mon Sep 17 00:00:00 2001 From: valued mammal Date: Fri, 10 Oct 2025 09:27:59 -0400 Subject: [PATCH] ci(coverage): Switch to `actions-rust-lang/setup-rust-toolchain` --- .github/workflows/code_coverage.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index d6d8e9ac..dbbdc663 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -16,14 +16,12 @@ jobs: - name: Install lcov tools run: sudo apt-get install lcov -y - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 + uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: nightly override: true - profile: minimal + cache: true components: llvm-tools-preview - - name: Rust Cache - uses: Swatinem/rust-cache@v2.7.8 - name: Install cargo-llvm-cov run: if [[ ! -e ~/.cargo/bin/cargo-llvm-cov ]]; then cargo install cargo-llvm-cov; fi - name: Make coverage directory -- 2.49.0