From 8c53e37912d6a64a09ebf536fecd9ede4211a5c6 Mon Sep 17 00:00:00 2001 From: Andrew Oberstar Date: Sat, 23 Nov 2024 21:44:55 -0600 Subject: [PATCH] chore: Use build instead of check in CI This will highlight issues with Javadoc before merge. --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2bc93d4..f3a015c 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -25,5 +25,5 @@ jobs: uses: gradle/wrapper-validation-action@v1 - name: Setup Gradle uses: gradle/gradle-build-action@v2 - - name: Gradle check - run: ./gradlew check --continue + - name: Gradle build + run: ./gradlew build --continue