Skip to content

Commit

Permalink
Switch from ./gradlew to gradle command in GitHub Actions
Browse files Browse the repository at this point in the history
This change transitions the use of commands from './gradlew' to 'gradle' in the GitHub Actions workflow file (main.yml). Gradle setup now uses 'gradle-build-action@v2', and the naming of the test script execution has been modified for better clarity.
  • Loading branch information
meanmail committed Jan 25, 2024
1 parent ce5c9f3 commit 323b90d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: gradle/gradle-build-action@v2

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

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

0 comments on commit 323b90d

Please sign in to comment.