From 03b0544044f1882f0590ea0f03a9cc4a0544723b Mon Sep 17 00:00:00 2001 From: christn Date: Mon, 5 Aug 2024 11:59:47 +0800 Subject: [PATCH] fix: Add --all and --fix tags to clippy command in CI to avoid misleading errors / warnings --- .github/workflows/check-lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-lint-test.yaml b/.github/workflows/check-lint-test.yaml index 8b833cb..dfa718f 100644 --- a/.github/workflows/check-lint-test.yaml +++ b/.github/workflows/check-lint-test.yaml @@ -66,4 +66,4 @@ jobs: uses: actions-rs/cargo@v1 with: command: clippy - args: -- -D warnings + args: --all --fix -- -D warnings