Skip to content

Commit

Permalink
Add gradle cache to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Drjacky committed Aug 7, 2023
1 parent 57cc234 commit 11cc901
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@ jobs:
run: bash ./gradlew test --stacktrace
- name: Cache Gradle Caches
uses: actions/cache@v3
env:
cache-name: cache-gradle-cache
with:
path: ~/.gradle/caches/
key: cache-gradle-cache
- name: Cache Gradle Wrapper
uses: actions/cache@v3
env:
cache-name: cache-gradle-wrapper
with:
path: ~/.gradle/wrapper/
key: cache-gradle-wrapper
Expand Down

0 comments on commit 11cc901

Please sign in to comment.