Skip to content

Commit 4014672

Browse files
committed
Process every xml report
1 parent bbc4aa2 commit 4014672

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/checkstyle.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,6 @@ jobs:
3434
env:
3535
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
run: |
37-
cat build/reports/checkstyle/*.xml | reviewdog -f=checkstyle -reporter=github-pr-review -fail-level=any
37+
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

Comments
 (0)