diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 803e07ba..5f102d64 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -164,7 +164,7 @@ jobs: run: | set -e # Fail the script if any command fails cargo check 2>&1 | tee build_output.log - warnings=$(grep "cargo:warning=" build_output.log || true) + warnings=$(grep "warning: " build_output.log || true) if [ -n "$warnings" ]; then echo "The following custom lints have failed ❌:" echo "$warnings"