summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/checks.yml11
-rw-r--r--config/checkstyle/suppressions.xml1
2 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml
index 314c574df..587b6780a 100644
--- a/.github/workflows/checks.yml
+++ b/.github/workflows/checks.yml
@@ -14,15 +14,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- - name: Cache Gradle
- uses: actions/cache@v2
- with:
- path: |
- ~/.gradle/caches
- ~/.gradle/wrapper
- key: gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
- name: Checkstyle
- run: ./gradlew checkstyle
+ run: |
+ curl -s -L https://github.com/checkstyle/checkstyle/releases/download/checkstyle-9.2.1/checkstyle-9.2.1-all.jar > checkstyle.jar
+ find . -name "*\.java" | xargs java -Dconfig_loc=config/checkstyle -jar checkstyle.jar -c config/checkstyle/checkstyle.xml
- name: Find PR Base Commit
id: vars
run: |
diff --git a/config/checkstyle/suppressions.xml b/config/checkstyle/suppressions.xml
index 612d582bd..47256a195 100644
--- a/config/checkstyle/suppressions.xml
+++ b/config/checkstyle/suppressions.xml
@@ -8,5 +8,6 @@
<suppress checks="." files="[\\/]generated-sources[\\/]"/>
<suppress checks="." files="[\\/]build[\\/]"/>
+ <suppress checks="." files="[\\/]gen[\\/]"/>
<suppress checks="." files="[\\/].idea[\\/]"/>
</suppressions>