From 69bef2b663315ada284937994e8ff742247e85a0 Mon Sep 17 00:00:00 2001 From: Ken Kousen Date: Thu, 1 Aug 2024 18:11:59 -0400 Subject: [PATCH] Refactor Gradle build and test steps Changed Gradle build and test steps from using actions to explicit commands. This simplifies the workflow configuration and provides more clarity about the commands being executed. --- .github/workflows/gradle.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 91905ba..f8736f8 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -24,12 +24,10 @@ jobs: uses: gradle/wrapper-validation-action@v2 - name: Build with Gradle uses: gradle/actions/setup-gradle@v3 - with: - arguments: build + run: ./gradlew build - name: Run tests uses: gradle/actions/setup-gradle@v3 - with: - arguments: test + run: ./gradlew test - name: Upload build reports uses: actions/upload-artifact@v4