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".
This commit is contained in:
Martin Nordholts 2021-03-07 21:42:15 +01:00 committed by David Peter
parent 52f84b063c
commit 8f93844427
1 changed files with 1 additions and 3 deletions

View File

@ -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: