Skip to content

Commit

Permalink
CI: Fix failure
Browse files Browse the repository at this point in the history
Suppress the warning generated by derive_partial_eq_without_eq lint

Signed-off-by: Erdem Meydanli <[email protected]>
  • Loading branch information
meerd committed Aug 8, 2022
1 parent 16eebf7 commit 080a179
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ jobs:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@nightly
- run: rustup component add clippy
- run: cargo clippy --all
# Suppress the warning generated by derive_partial_eq_without_eq lint.
# This warning appears with the nightly toolchain.
# Please, also see this GitHub issue: https://github.com/rust-lang/rust-clippy/issues/9063
- run: cargo clippy --all -- -A clippy::derive_partial_eq_without_eq

fmt:
name: Rustfmt
Expand Down

0 comments on commit 080a179

Please sign in to comment.