Skip to content

Commit 7889835

Browse files
committed
fixup! try a simplier version of the 'build' workflow
1 parent b7056df commit 7889835

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,12 @@ jobs:
1313
uses: actions/setup-java@v4
1414
with:
1515
distribution: 'temurin'
16-
java-version: 17
16+
java-version: 21
1717
- name: Setup Gradle
1818
uses: gradle/actions/setup-gradle@v4
19-
- name: Build with Gradle
20-
run: ./gradlew build
19+
- name: Check Format
20+
run: ./gradlew spotlessCheck
21+
- name: Compile
22+
run: ./gradlew assemble
23+
- name: Run Tests
24+
run: ./gradlew check

0 commit comments

Comments
 (0)