chore: rename postgres service to test-db in CI workflow
CI / Generate Certificates (pull_request) Successful in 51s
ci.yml / Backend CI (pull_request) Has been cancelled
CI / E2E Tests (pull_request) Has been cancelled
CI / Frontend CI (pull_request) Has been cancelled

This commit is contained in:
me
2026-05-05 18:57:55 +05:30
parent 601dbd5c9b
commit 9a415a964c
+2 -2
View File
@@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
needs: setup-environment
services:
postgres:
test-db:
image: postgres:16-alpine
env:
POSTGRES_DB: piku_test
@@ -62,7 +62,7 @@ jobs:
cp ../.env.example ../.env
uv sync
if [ "$GITEA_ACTIONS" = "true" ]; then
export DB_HOST="postgres"
export DB_HOST="test-db"
export DB_PORT="5432"
else
export DB_HOST="127.0.0.1"