use -W warnings for clippy

This commit is contained in:
Vladislav Yaroslavlev
2026-02-17 16:41:38 +03:00
parent cb3d32cc89
commit 9886c9a8e7

View File

@@ -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