Fix caching of pipeline #34

Merged
jank1619 merged 6 commits from fix/improve-checkstyle-pipeline into main 2025-02-19 11:47:51 +00:00
Showing only changes of commit 455ebdbe91 - Show all commits

View File

@ -26,6 +26,13 @@ jobs:
key: gradle-${{ runner.os }}-common key: gradle-${{ runner.os }}-common
restore-keys: | restore-keys: |
gradle-${{ runner.os }}- gradle-${{ runner.os }}-
- name: "Cache Gradle build outputs"
uses: actions/cache@v3
with:
path: backend/build
key: gradle-build-${{ runner.os }}-common
restore-keys: |
gradle-build-${{ runner.os }}-
- name: "Prepare Gradle" - name: "Prepare Gradle"
working-directory: ./backend working-directory: ./backend
run: gradle clean run: gradle clean