From 9886c9a8e7bea625853673b340157e3327a5d49a Mon Sep 17 00:00:00 2001 From: Vladislav Yaroslavlev Date: Tue, 17 Feb 2026 16:41:38 +0300 Subject: [PATCH] use -W warnings for clippy --- .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 5079bd9..198a1b6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -45,10 +45,10 @@ jobs: - name: Run tests run: cargo test --verbose -# -D warnings commented out because of active development of telemt +# clippy commented out because of active development of telemt # and many warnings - name: Run clippy - run: cargo clippy # -- -D warnings + run: cargo clippy -- -W warnings - name: Check for unused dependencies run: cargo udeps || true