From c2e7c2efe5d1c9db54bf53e6254d6cb54ddaebf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Slez=C3=A1k?= Date: Thu, 22 May 2025 15:49:32 +0200 Subject: [PATCH] Use the stable toolchain when running tarpaulin --- .github/workflows/ci-rust.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-rust.yml b/.github/workflows/ci-rust.yml index f82c7675f5..4a41a09c12 100644 --- a/.github/workflows/ci-rust.yml +++ b/.github/workflows/ci-rust.yml @@ -39,6 +39,9 @@ on: # allow running manually workflow_dispatch: +env: + CARGO_TERM_COLOR: always + jobs: rust_ci: # the default timeout is 6 hours, that's too much if the job gets stuck @@ -110,6 +113,10 @@ jobs: - name: Run the tests run: cargo tarpaulin --all --doc --out xml -- --nocapture + env: + # use the "stable" tool chain (installed above) instead of the "nightly" default in tarpaulin + RUSTC_BOOTSTRAP: 1 + RUSTUP_TOOLCHAIN: stable - name: Generate and validate the OpenAPI specification run: |