We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86482ad commit b1ab7c1Copy full SHA for b1ab7c1
.github/workflows/cpp-lint-action.yml
@@ -58,7 +58,8 @@ jobs:
58
# if: steps.linter.outputs.checks-failed > 0
59
run: |
60
echo "some linter checks failed"
61
- echo "${{ steps.linter.outputs.checks-failed }}"
62
- echo "${{ env.checks-failed }}"
+ echo "total: ${{ steps.linter.outputs.checks-failed }}"
+ echo "clang-format: ${{ steps.linter.outputs.clang-format-checks-failed }}"
63
+ echo "clang-tidy: ${{ steps.linter.outputs.clang-tidy-checks-failed }}"
64
# for actual deployment
65
# run: exit 1
0 commit comments