We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec0321 commit f885737Copy full SHA for f885737
.github/workflows/gradle.yml
@@ -16,10 +16,12 @@ jobs:
16
with:
17
distribution: temurin
18
java-version: 25
19
+
20
- name: Setup Gradle
- uses: gradle/gradle-build-action@v2
21
- with:
22
- arguments: build --no-daemon
+ uses: gradle/actions/setup-gradle@v5
23
+ - name: Build with Gradle
24
+ run: ./gradlew build --no-daemon
25
checkstyle:
26
runs-on: ubuntu-latest
27
steps:
@@ -30,6 +32,7 @@ jobs:
30
32
31
33
34
35
- arguments: checkstyleMain checkstyleTest --no-daemon
36
37
+ - name: Run Checkstyle
38
+ run: ./gradlew checkstyleMain checkstyleTest --no-daemon
0 commit comments