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".
pull/1578/head
Martin Nordholts 3 years ago committed by David Peter
parent 52f84b063c
commit 8f93844427

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

Loading…
Cancel
Save