diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index 176d6970..aeca8d65 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -23,7 +23,9 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: --all-targets --all-features + # 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 - name: Test uses: actions-rs/cargo@v1 with: