From 75df9970cf6b8537e1091ae7c3c8eb587c9be3c8 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Fri, 9 Aug 2024 10:37:00 -0400 Subject: [PATCH] working, now proper error message at the end --- .github/workflows/check-rust.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 996fd945..1d2f686c 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -169,6 +169,7 @@ jobs: if grep -q "^warning:" clean_output.log; then echo "Build emitted the following warnings:" >&2 echo `grep "^warning:" clean_output.log` + exit "Some custom lints failed, see above for details." else echo "No warnings found." fi