Skip to content

Commit fddc392

Browse files
authored
[CI] Add missing error message for clang-tidy workflow (#330)
1 parent 71b7ed0 commit fddc392

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/static-analysis-pr.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040
CC: clang-19
4141
CXX: clang++-19
4242
- if: steps.review.outputs.total_comments > 0
43-
run: exit 1
43+
run: |
44+
echo "clang-tidy run has failed. See previous 'Run clang-tidy' stage logs"
45+
exit 1
4446
clang-tidy-for-gcc-build:
4547
needs:
4648
- clang-tidy

0 commit comments

Comments
 (0)