From 9b5b382593fb281ddeaab8f73a740a5f5d9903de Mon Sep 17 00:00:00 2001 From: Vladislav Yaroslavlev Date: Tue, 17 Feb 2026 17:00:17 +0300 Subject: [PATCH] dont fail on loop error --- .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 198a1b6..effe3ea 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -45,10 +45,10 @@ jobs: - name: Run tests run: cargo test --verbose -# clippy commented out because of active development of telemt +# clippy dont fail on warnings because of active development of telemt # and many warnings - name: Run clippy - run: cargo clippy -- -W warnings + run: cargo clippy -- --cap-lints warn - name: Check for unused dependencies run: cargo udeps || true