Skip to content

Commit

Permalink
chore(clippy): remove allowed lint
Browse files Browse the repository at this point in the history
The GH action running clippy was configured to ignore a clippy linter
warning. This lint error has been fixed, hence the exception can be
removed.

Moreover, the Makefile has been updated to ensure clippy is invoked in
the same way as by the GH action.

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
  • Loading branch information
flavio committed Aug 29, 2023
1 parent d994616 commit 3aa96e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ jobs:
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: clippy
args: --workspace -- -D warnings -A clippy::derive-partial-eq-without-eq
args: --workspace -- -D warnings
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ fmt:

.PHONY: lint
lint:
cargo clippy -- -D warnings
cargo clippy --workspace -- -D warnings

.PHONY: doc
doc:
Expand Down

0 comments on commit 3aa96e8

Please sign in to comment.