Enable clippy on tests and examples

Might as well run the lints on our tests and examples. When I first
started doing this cleanup, I thought this was the default, but I must
have run `cargo clippy --all-targets` at some point in there.
This commit is contained in:
Alex Crawford 2020-12-29 18:55:35 -08:00
parent cb66f9f036
commit bcd78bbb1b
1 changed files with 1 additions and 1 deletions

View File

@ -23,4 +23,4 @@ jobs:
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: -- -D warnings
args: --tests --examples -- -D warnings