From 63da5afa7b3a7560ba2c48a3eeab8e3ec79b1318 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Fri, 9 Aug 2024 06:53:06 -0400 Subject: [PATCH] try again --- .github/workflows/check-rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 5f102d646..bb382a861 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -163,7 +163,7 @@ jobs: # which will nevertheless check the whole workspace run: | set -e # Fail the script if any command fails - cargo check 2>&1 | tee build_output.log + cargo check | tee build_output.log warnings=$(grep "warning: " build_output.log || true) if [ -n "$warnings" ]; then echo "The following custom lints have failed ❌:"