Do not fail workflow on static analysis results upload failures
When Clippy finds lints, it already aborts the workflow. No double failure is needed.
This commit is contained in:
parent
0506418157
commit
664b27c4ca
1 changed files with 1 additions and 0 deletions
1
.github/workflows/oxipng.yml
vendored
1
.github/workflows/oxipng.yml
vendored
|
|
@ -156,6 +156,7 @@ jobs:
|
|||
- name: Upload analysis results to GitHub
|
||||
uses: github/codeql-action/upload-sarif@v3
|
||||
if: always() && matrix.target == 'x86_64-unknown-linux-gnu'
|
||||
continue-on-error: true
|
||||
with:
|
||||
sarif_file: clippy-results.sarif
|
||||
category: clippy
|
||||
|
|
|
|||
Loading…
Reference in a new issue