From 3897dd406274407c40f38575a896703dc4ff14e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=8BAndrzej=20Ressel?= Date: Sat, 9 Mar 2024 22:01:11 +0100 Subject: [PATCH] Run clippy on all workspace members --- .github/workflows/rust-clippy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-clippy.yml b/.github/workflows/rust-clippy.yml index 10a9f857c..f85718c18 100644 --- a/.github/workflows/rust-clippy.yml +++ b/.github/workflows/rust-clippy.yml @@ -56,6 +56,7 @@ jobs: - name: Run rust-clippy run: cargo clippy + --all --all-features --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt continue-on-error: true @@ -64,4 +65,4 @@ jobs: uses: github/codeql-action/upload-sarif@v1 with: sarif_file: rust-clippy-results.sarif - wait-for-processing: true \ No newline at end of file + wait-for-processing: true