From 936db994ec6b5e026cb358dd5291ba5c5e6d7e29 Mon Sep 17 00:00:00 2001 From: iiTzArcur Date: Thu, 4 May 2023 11:21:43 +0300 Subject: [PATCH] Update rust-clippy.yml --- .github/workflows/rust-clippy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-clippy.yml b/.github/workflows/rust-clippy.yml index 2159ae5..b430c43 100644 --- a/.github/workflows/rust-clippy.yml +++ b/.github/workflows/rust-clippy.yml @@ -52,11 +52,11 @@ jobs: restore-keys: ${{ runner.os }}-cargo- - name: Install required cargo - run: cargo install clippy-sarif sarif-fmt + run: cargo install --force clippy-sarif sarif-fmt - name: Run rust-clippy run: - cargo clippy --force + cargo clippy --all-features --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt continue-on-error: true