Skip to content

Commit 8e76dd8

Browse files
committed
ci-basic.yml: match clippy flags with upstream lint workflow
1 parent 4c5094e commit 8e76dd8

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

.github/workflows/ci-basic.yml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,7 @@ jobs:
4242
- name: Run format check
4343
run: cargo fmt -- --check
4444
- name: Run clippy
45-
run: |
46-
# After upgrading from Rust 1.82 to 1.85.1, Clippy started failing on new lints in upstream
47-
# code we don’t want to patch here (and may already be fixed upstream). To avoid carrying
48-
# fixes and merge conflicts, we allow these lints only for the affected crates for now.
49-
# TODO: remove this comment and these Clippy exceptions after syncing with updated upstream.
50-
cargo clippy --workspace --no-deps --all-features --all-targets --locked -- \
51-
-D warnings \
52-
-A mismatched_lifetime_syntaxes \
53-
-A missing_docs \
54-
-A non_local_definitions \
55-
-A clippy::needless_lifetimes \
56-
-A clippy::needless_return \
57-
-A clippy::unnecessary_lazy_evaluations \
58-
-A clippy::unnecessary_map_or \
59-
-A clippy::needless_as_bytes \
60-
-A clippy::useless_conversion
45+
run: cargo clippy --workspace --all-targets --features "default-release-binaries proptest-impl lightwalletd-grpc-tests zebra-checkpoints"
6146

6247
- name: Show system resource summary
6348
run: |

0 commit comments

Comments
 (0)