From c1b937152bcc0c09dee571e14300549a3788f131 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Tr=C3=B6ger?= Date: Thu, 21 Aug 2025 23:49:59 +0200 Subject: [PATCH] Update testing.yaml --- .gitea/workflows/testing.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/testing.yaml b/.gitea/workflows/testing.yaml index 99348d2..62c456c 100644 --- a/.gitea/workflows/testing.yaml +++ b/.gitea/workflows/testing.yaml @@ -19,6 +19,7 @@ jobs: POSTGRES_PASSWORD: password POSTGRES_DB: arbeitszeitmessung POSTGRES_PORT: 5432 + RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache steps: - name: Checkout uses: actions/checkout@v4 @@ -27,7 +28,6 @@ jobs: uses: actions/setup-go@v5 with: go-version-file: Backend/go.mod - check-latest: true - uses: https://gitea.com/actions/go-hashfiles@v0.0.1 id: hash-go with: @@ -38,7 +38,7 @@ jobs: id: cache-go uses: actions/cache@v4 with: - path: | + path: |- /go_path /go_cache key: arbeitszeitmessung-${{ steps.hash-go.outputs.hash }} @@ -47,7 +47,7 @@ jobs: - name: Run Go Tests run: cd Backend && go test ./... build: - # needs: testing + needs: testing name: Build Go Image and Upload runs-on: ubuntu-latest steps: