From: valued mammal Date: Fri, 10 Oct 2025 13:27:59 +0000 (-0400) Subject: ci(coverage): Switch to `actions-rust-lang/setup-rust-toolchain` X-Git-Url: http://internal-gitweb-vhost/?a=commitdiff_plain;h=eabd1be36718c788cb55ec48b1dfc9e16b638ce6;p=bdk ci(coverage): Switch to `actions-rust-lang/setup-rust-toolchain` --- 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