summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Nordholts <enselic@gmail.com>2021-03-07 21:42:15 +0100
committerDavid Peter <sharkdp@users.noreply.github.com>2021-03-08 07:08:55 +0100
commit8f938444270e4231936c4f7b13641ae707d97c01 (patch)
treed7cb7e3ef17da45ac8a55b8713b1227829c5868a
parent52f84b063c9e4081b53fde8ebc2ce31a36553d99 (diff)
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".
-rw-r--r--.github/workflows/CICD.yml4
1 files changed, 1 insertions, 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: