From bcd78bbb1b55678af763510b6699206e83638653 Mon Sep 17 00:00:00 2001 From: Alex Crawford Date: Tue, 29 Dec 2020 18:55:35 -0800 Subject: [PATCH] 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. --- .github/workflows/clippy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 81848f9..76985f4 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -23,4 +23,4 @@ jobs: - uses: actions-rs/clippy-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - args: -- -D warnings + args: --tests --examples -- -D warnings