dev/actions feature: overtime #27

Merged
tom_trgr merged 53 commits from dev/actions into main 2025-09-04 00:58:25 +02:00
Showing only changes of commit 6c544174d0 - Show all commits

View File

@@ -12,12 +12,6 @@ jobs:
POSTGRES_DB: arbeitszeitmessung
POSTGRES_PORT: 5432
steps:
- uses: harmon758/postgresql-action@v1
with:
postgresql version: "16"
postgresql user: ${{ env.POSTGRES_USER }}
postgresql password: ${{ env.POSTGRES_PASSWORD }}
postgresql db: ${{ env.POSTGRES_DB }}
- name: Checkout
uses: actions/checkout@v4
with:
@@ -42,5 +36,10 @@ jobs:
/go_path
/go_cache
key: go_path-${{ steps.hash-go.outputs.hash }}
- name: Run Go Test
run: cd Backend && go test ./...
- uses: harmon758/postgresql-action@v1
with:
postgresql version: "16"
postgresql user: ${{ env.POSTGRES_USER }}
postgresql password: ${{ env.POSTGRES_PASSWORD }}
postgresql db: ${{ env.POSTGRES_DB }}
- run: cd Backend && go test ./...