diff options
author | Juuz <6596629+Juuxel@users.noreply.github.com> | 2022-09-12 02:23:00 +0300 |
---|---|---|
committer | Juuz <6596629+Juuxel@users.noreply.github.com> | 2022-09-12 02:23:00 +0300 |
commit | 65b904d8e792042363db42ee2240008fea5bce40 (patch) | |
tree | eebd4fdf7ad77c06b018f1972c1098f556316a5f /.github/workflows/build.yml | |
parent | a31cdef4141461b846c398c03044d7f35ce86f74 (diff) | |
download | LibGui-65b904d8e792042363db42ee2240008fea5bce40.tar.gz LibGui-65b904d8e792042363db42ee2240008fea5bce40.tar.bz2 LibGui-65b904d8e792042363db42ee2240008fea5bce40.zip |
Add checkstyle report action
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
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 |