ci: update CI workflow by removing unnecessary caching steps

This commit is contained in:
Jan Gleytenhoover 2025-02-19 09:54:41 +01:00
parent 9d4fb96daf
commit 13245cdab6
Signed by: jank
GPG key ID: 22BEAC760B3333D6

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