Update clippy to check all features (#441)

* Update clippy to check all features

* Fix tests

* oops
This commit is contained in:
JT
2021-12-06 07:23:43 +13:00
committed by GitHub
parent 9548e5ef5b
commit fdde95f675
13 changed files with 33 additions and 17 deletions

View File

@ -29,7 +29,7 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: test
args: --all
args: --all --all-features
- uses: actions-rs/cargo@v1
with:
@ -39,4 +39,4 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect
args: --all --all-features -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect