We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbc4aa2 commit 4014672Copy full SHA for 4014672
1 file changed
.github/workflows/checkstyle.yml
@@ -34,4 +34,6 @@ jobs:
34
env:
35
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
run: |
37
- cat build/reports/checkstyle/*.xml | reviewdog -f=checkstyle -reporter=github-pr-review -fail-level=any
+ for xmlReport in {.,integration-tests}/build/reports/checkstyle/*.xml; do \
38
+ (cat $xmlReport | reviewdog -f=checkstyle -fail-level=any) || exit; \
39
+ done
0 commit comments