Skip to content

Commit 33449c4

Browse files
reporting check result shouldn't be based on test results (#48)
1 parent 290c690 commit 33449c4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

code-check-actions/lua-lint/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ runs:
4949
check_name: Luacheck Report
5050
comment_mode: always
5151
action_fail: false
52+
fail_on: 'nothing' # Explicitly don't fail reporting check based on test results
5253

5354

code-check-actions/rust-lint/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ runs:
3232
continue-on-error: true
3333
with:
3434
token: ${{ inputs.token }}
35-
args: --manifest-path ${{ steps.meta.outputs.manifest_path }} -- -W clippy::correctness -W clippy::cargo -W clippy::pedantic
35+
# Explicitly report all findings as warnings to not fail the reporiting status check
36+
args: --manifest-path ${{ steps.meta.outputs.manifest_path }} -- -W clippy::correctness -W clippy::cargo -W clippy::suspicious -W clippy::style
3637
name: Rust Clippy Report
3738

3839
# - uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b

0 commit comments

Comments
 (0)