Skip to content

Commit

Permalink
Add 'cache: gradle' setting in GitHub workflow
Browse files Browse the repository at this point in the history
The GitHub Actions workflow file (main.yml) has been updated with the 'cache: gradle' setting. This addition ensures that the dependencies are cached between workflow runs, decreasing the time it takes to install them.
  • Loading branch information
meanmail committed Jan 25, 2024
1 parent 265a628 commit 796cbfb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
with:
distribution: 'zulu'
java-version: '${{ matrix.version }}'
cache: 'gradle'

- name: Install Dependencies
run: gradle resolveDependencies
Expand Down

0 comments on commit 796cbfb

Please sign in to comment.