From a7c70701b16bf165046fee47a53cd6197ccb4526 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Wed, 8 Oct 2025 10:28:23 +0200 Subject: [PATCH] use stable toolchain in codecov.yml --- .github/workflows/codecov.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index e27a2e9..3757286 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -26,9 +26,9 @@ jobs: components: llvm-tools-preview - uses: actions-rs/cargo@v1 continue-on-error: true + - name: Install stable toolchain + uses: dtolnay/rust-toolchain@stable - run: | - echo "Adding x86_64-unknown-linux-gnu target"; - rustup target add x86_64-unknown-linux-gnu; echo "Installing grcov"; cargo install grcov; echo "Running tests";