Skip to content

Commit

Permalink
Enable gradle caching for faster CI runs (#6793)
Browse files Browse the repository at this point in the history
* Enable gradle caching for faster CI runs

Notes:
1. distribution is mandatory in v3
2. zulu is used because it was recommended in wiki

* use temurin
  • Loading branch information
touhidurrr committed May 14, 2022
1 parent 457b20d commit e73b73e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/buildAndDeploy.yml
Expand Up @@ -30,9 +30,11 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'gradle'

- name: Compile kotlin and build classes
run: ./gradlew classes
Expand Down

0 comments on commit e73b73e

Please sign in to comment.