Skip to content

Commit

Permalink
Update gradle usage and tests in GitHub Actions workflow
Browse files Browse the repository at this point in the history
The 'gradle' usage in the GitHub Actions workflow file (main.yml) has been updated, transitioning commands from 'gradle' to './gradlew'. Along with this, 'gradle-build-action@v2' is now used for setting up Gradle. Test script execution name has been updated for clarity.
  • Loading branch information
meanmail committed Jan 25, 2024
1 parent 796cbfb commit ce5c9f3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@ jobs:
java-version: '${{ matrix.version }}'
cache: 'gradle'

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Dependencies
run: gradle resolveDependencies
shell: bash
run: ./gradlew resolveDependencies

- name: test
run: gradle test -i
- name: Run tests
run: ./gradlew test -i

0 comments on commit ce5c9f3

Please sign in to comment.