From 65b904d8e792042363db42ee2240008fea5bce40 Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Mon, 12 Sep 2022 02:23:00 +0300 Subject: Add checkstyle report action --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 52f5c55..490b5c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,3 +19,9 @@ jobs: run: chmod +x ./gradlew - name: build run: ./gradlew build --stacktrace + - name: publish checkstyle report + uses: Juuxel/publish-checkstyle-report@v1 + if: ${{ failure() }} + with: + reports: | + build/reports/checkstyle/*.xml -- cgit