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 13245cdab6 - Show all commits

View File

@ -26,20 +26,12 @@ jobs:
key: gradle-${{ runner.os }}-common
restore-keys: |
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"
working-directory: ./backend
run: gradle clean
- name: "Check"
working-directory: ./backend
run: gradle checkstyleMain
- run: find . -print | sed -e "s;[^/]*/;|____;g;s;____|; |;g"
- name: "Stop Gradle"
working-directory: ./backend
run: gradle --stop