Skip to content

Commit

Permalink
added caching to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 8, 2024
1 parent 658587d commit 0b5594c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Setup Gradle Dependencies Cache
uses: actions/cache@v2
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('gradle.properties') }}
- name: build
run: ./gradlew build
- name: capture build artifacts
Expand Down

0 comments on commit 0b5594c

Please sign in to comment.