From 8f938444270e4231936c4f7b13641ae707d97c01 Mon Sep 17 00:00:00 2001 From: Martin Nordholts Date: Sun, 7 Mar 2021 21:42:15 +0100 Subject: [PATCH] CICD: Remove explicit allow of clippy::match_bool since MSRV 1.45 bump Now that we are on MSRV 1.45, there is no need to "backport" the change that reclassified clippy::match_bool as "pedantic". --- .github/workflows/CICD.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 34b77224..2116fd85 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -31,9 +31,7 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - # clippy::match_bool is allowed by default from Rust 1.45.0, see - # https://github.com/rust-lang/rust-clippy/commit/e1d13c34b0beaea9a5fbf13687672ef85e779d9f - args: --all-targets --all-features -- --allow clippy::match_bool + args: --all-targets --all-features - name: Run tests uses: actions-rs/cargo@v1 with: