We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0154c commit cad7e0cCopy full SHA for cad7e0c
.github/workflows/check-build.yml
@@ -99,6 +99,14 @@ jobs:
99
java-version: ${{ matrix.java }}
100
cache: 'maven'
101
102
+ - name: CheckStyle Cache
103
+ uses: actions/cache@v4
104
+ with:
105
+ path: '**/target/checkstyle-cachefile'
106
+ key: ${{ runner.os }}-checkstyle-${{ hashFiles('**/pom.xml') }}
107
+ restore-keys: |
108
+ ${{ runner.os }}-checkstyle-
109
+
110
- name: Run Checkstyle
111
run: ./mvnw -B checkstyle:check -P checkstyle -T2C
112
@@ -122,7 +130,7 @@ jobs:
122
130
123
131
124
132
125
- - name: PMD Analysis Cache
133
+ - name: PMD Cache
126
134
uses: actions/cache@v4
127
135
with:
128
136
path: '**/target/pmd/pmd.cache'
0 commit comments