Skip to content

Commit

Permalink
Refactor Gradle build and test steps
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kousen committed Aug 1, 2024
1 parent e0d4558 commit 69bef2b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 69bef2b

Please sign in to comment.