diff --git a/.github/workflows/quick-check.yml b/.github/workflows/quick-check.yml index 2c15277bc3..a70d12c029 100644 --- a/.github/workflows/quick-check.yml +++ b/.github/workflows/quick-check.yml @@ -45,7 +45,8 @@ jobs: env: REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - for xml in $(find gwt/build/out | grep checkstyle); do + cd gwt + for xml in $(find build/out | grep checkstyle); do reviewdog -f=checkstyle -reporter=github-pr-review < $xml; done - name: Upload checkstyle xml for manual review