We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f421b91 commit 94a055aCopy full SHA for 94a055a
1 file changed
.github/workflows/rust-clippy.yml
@@ -40,13 +40,14 @@ jobs:
40
41
- name: Install required cargo
42
run: cargo install clippy-sarif sarif-fmt
43
-
44
- - name: Run rust-clippy
45
- run:
46
- cargo clippy
47
- --all-features
48
- --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
49
- continue-on-error: true
+
+ - name: Run rust-clippy
+ run: |
+ cargo clippy --all-features --message-format=json \
+ | clippy-sarif \
+ | tee rust-clippy-results.sarif \
+ | sarif-fmt
50
+ continue-on-error: true
51
52
- name: Upload analysis results to GitHub
53
uses: github/codeql-action/upload-sarif@v3
0 commit comments