Skip to content

Commit b1ab7c1

Browse files
committed
revise "Fail fast?!" step
1 parent 86482ad commit b1ab7c1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/cpp-lint-action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ jobs:
5858
# if: steps.linter.outputs.checks-failed > 0
5959
run: |
6060
echo "some linter checks failed"
61-
echo "${{ steps.linter.outputs.checks-failed }}"
62-
echo "${{ env.checks-failed }}"
61+
echo "total: ${{ steps.linter.outputs.checks-failed }}"
62+
echo "clang-format: ${{ steps.linter.outputs.clang-format-checks-failed }}"
63+
echo "clang-tidy: ${{ steps.linter.outputs.clang-tidy-checks-failed }}"
6364
# for actual deployment
6465
# run: exit 1

0 commit comments

Comments
 (0)