Skip to content

Commit 4c2bfee

Browse files
committed
Handle failures
1 parent 2f0599c commit 4c2bfee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/analysis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
style: 'file' # Use .clang-format config file
6363
tidy-checks: '' # Use .clang-tidy config file
6464
step-summary: false # Disable summary output for more detailed logs
65-
fail-on-warnings: true # Fail the job if any issues are found
6665
ignore: 'build'
6766
extra-args: '-std=c++20'
67+
- name: Fail fast?!
68+
if: steps.linter.outputs.checks-failed > 0
69+
run: exit 1

0 commit comments

Comments
 (0)