From e999d90fe1a894fd09cd9807e0927889de2f81b8 Mon Sep 17 00:00:00 2001 From: Paul Delafosse Date: Tue, 16 Jan 2024 08:58:33 +0100 Subject: [PATCH] ci: try to fix coverage --- .github/workflows/CI.yaml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 749e5f2..660ed3f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -35,18 +35,11 @@ jobs: cache-all-crates: "true" key: "${{ matrix.os }}-${{ matrix.target }}" - - name: Install stable toolchain - uses: actions-rs/toolchain@v1 + - uses: dtolnay/rust-toolchain@stable with: - profile: minimal - toolchain: stable - - - name: Install cargo-llvm-cov - if: ${{matrix.coverage}} - uses: taiki-e/install-action@cargo-llvm-cov - - - name: Install nextest - uses: taiki-e/install-action@nextest + components: llvm-tools-preview + - uses: taiki-e/install-action@cargo-llvm-cov + - uses: taiki-e/install-action@nextest - name: Collect coverage data if: ${{matrix.coverage}}