We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e2d86 commit 15299eeCopy full SHA for 15299ee
.github/workflows/self-test.yml
@@ -18,6 +18,9 @@ on:
18
19
jobs:
20
test:
21
+ permissions:
22
+ issues: write
23
+ pull-requests: write
24
strategy:
25
matrix:
26
os: [ ubuntu-latest, macos-latest, windows-latest ]
@@ -61,7 +64,8 @@ jobs:
61
64
# if: steps.linter.outputs.checks-failed > 0
62
65
run: |
63
66
echo "some linter checks failed"
- echo "${{ steps.linter.outputs.checks-failed }}"
- echo "${{ env.checks-failed }}"
67
+ echo "total checks-failed: ${{ steps.linter.outputs.checks-failed }}"
68
+ echo "clang-tidy checks-failed: ${{ steps.linter.outputs.clang-tidy-checks-failed }}"
69
+ echo "clang-format checks-failed: ${{ steps.linter.outputs.clang-format-checks-failed }}"
70
# for actual deployment
71
# run: exit 1
0 commit comments