From abb52f012888098caf9088293f257f5bbf6a8768 Mon Sep 17 00:00:00 2001 From: Jan David Date: Mon, 18 Mar 2024 11:59:51 +0100 Subject: [PATCH] Measure test coverage on stable Rust Tarpaulin does not require a nightly compiler anymore, and by switching to the stable releases we increase the stability and reliability of the test suite. --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 6947a21..a6c1299 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -82,7 +82,7 @@ jobs: if: needs.detect-changes.outputs.any_changed == 'true' container: - image: xd009642/tarpaulin:develop-nightly + image: xd009642/tarpaulin:0.27.3-slim options: --security-opt seccomp=unconfined steps: @@ -94,7 +94,7 @@ jobs: - name: Run tests with test coverage run: | - cargo +nightly tarpaulin \ + cargo tarpaulin \ --all-features \ --engine llvm \ --out xml \