Skip to content

Commit

Permalink
Refactor Gradle workflow setup
Browse files Browse the repository at this point in the history
Replaced the Gradle wrapper validation and build steps with a more streamlined setup and test execution. This improves clarity and ensures tests are directly run after setting up Gradle.
  • Loading branch information
Denis Timakov committed Aug 23, 2024
1 parent 2802fa9 commit 223259b
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,8 @@ jobs:
java-version: '21'
distribution: 'liberica'

- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4

- name: Build with Gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
with:
gradle-version: '8.10'
arguments: 'build'

- name: Run the tests
run: ./gradlew check

0 comments on commit 223259b

Please sign in to comment.