From 080a1795b233ec20703ef4b21464b5747a5a612a Mon Sep 17 00:00:00 2001 From: Erdem Meydanli Date: Mon, 8 Aug 2022 22:28:50 +0000 Subject: [PATCH] CI: Fix failure Suppress the warning generated by derive_partial_eq_without_eq lint Signed-off-by: Erdem Meydanli --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e6c097..2b4402d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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