From bec94deaaeba8b094a980948ae447b93485bd86a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Tr=C3=B6ger?= Date: Thu, 29 Jan 2026 18:41:18 +0100 Subject: [PATCH] fix: added templ generate to git actions --- .gitea/workflows/test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 80c1004..5bec07f 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -46,6 +46,8 @@ jobs: key: arbeitszeitmessung-${{ steps.hash-go.outputs.hash }} restore-keys: |- arbeitszeitmessung- + - name: Render Templ files + run: cd Backend && go install github.com/a-h/templ/cmd/templ@v0.3.977 && templ generate - name: Run Go Tests run: cd Backend && mkdir .test && go test ./... -coverprofile=.test/coverage.out -json > .test/report.json - name: Verify coverage report exists