From ea2d964502a887ad5dd84950522a41d9eedfcaf7 Mon Sep 17 00:00:00 2001 From: Alexey <247128645+axkurcom@users.noreply.github.com> Date: Sat, 21 Mar 2026 16:18:24 +0300 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3197bfc..f3a403e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -102,7 +102,39 @@ jobs: - name: Clippy shell: bash - run: cargo clippy --workspace --bins --locked -- -D warnings + run: | + cargo clippy --workspace --bins --locked -- \ + -D clippy::await_holding_lock \ + -D clippy::await_holding_refcell_ref \ + -D clippy::unwrap_used \ + -D clippy::expect_used \ + -D clippy::panic \ + -D clippy::panic_in_result_fn \ + -D clippy::unreachable \ + -D clippy::indexing_slicing \ + -D clippy::mut_from_ref \ + -D clippy::let_underscore_must_use \ + -D clippy::unused_io_amount \ + -D clippy::unused_unit \ + -D clippy::fallible_impl_from \ + -D clippy::shadow_unrelated \ + -D clippy::branches_sharing_code \ + -D clippy::len_without_is_empty \ + -D clippy::needless_borrow \ + -D clippy::redundant_locals \ + -D clippy::empty_line_after_doc_comments \ + -D clippy::empty_line_after_outer_attr \ + -D clippy::unused_async \ + -D clippy::must_use_candidate \ + -A clippy::too_many_arguments \ + -A clippy::type_complexity \ + -A clippy::new_ret_no_self \ + -A clippy::manual_contains \ + -A clippy::manual_is_multiple_of \ + -A clippy::manual_hash_one \ + -A clippy::collapsible_if \ + -A clippy::manual_range_contains \ + -A dead_code - name: Tests shell: bash