From 768a1cf7bdacea2e284d295ca49b3691f7c4926d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Djk=C3=A1=C5=A5o?= Date: Mon, 11 Mar 2024 18:30:23 +0100 Subject: [PATCH] stricten clippy --- .github/workflows/rust-clippy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust-clippy.yml b/.github/workflows/rust-clippy.yml index b6f7de9..c844e8e 100644 --- a/.github/workflows/rust-clippy.yml +++ b/.github/workflows/rust-clippy.yml @@ -2,9 +2,9 @@ name: rust-clippy analyze on: push: - branches: [ "master" ] + branches: ["master"] pull_request: - branches: [ "master" ] + branches: ["master"] jobs: rust-clippy-analyze: name: Run rust-clippy analyzing @@ -28,10 +28,10 @@ jobs: run: cargo install clippy-sarif sarif-fmt - name: Run rust-clippy - run: - cargo clippy + run: cargo clippy --all-features --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt + -D warnings continue-on-error: true - name: Upload analysis results to GitHub