devops/backend-tests #8

Merged
marcel merged 2 commits from devops/backend-tests into main 2026-03-17 22:23:13 +01:00
Showing only changes of commit 553fa8a4b9 - Show all commits

View File

@@ -69,7 +69,13 @@ jobs:
with:
java-version: '21'
distribution: temurin
cache: maven
- name: Cache Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('backend/pom.xml') }}
restore-keys: maven-
- name: Run backend tests
run: |
@@ -118,7 +124,13 @@ jobs:
with:
java-version: '21'
distribution: temurin
cache: maven
- name: Cache Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-${{ hashFiles('backend/pom.xml') }}
restore-keys: maven-
- name: Build backend (skip tests — covered by separate Java test job)
run: |