From d0cfac958e2256fd0382ed3f5f883e3439569abb Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Tue, 5 May 2026 06:43:13 +0530 Subject: [PATCH] refactor: move DB_PORT variable outside of conditional block in CI workflow --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec6e6cb..76261c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,11 +128,10 @@ jobs: # Use internal networking for Gitea if [ "$GITEA_ACTIONS" = "true" ]; then export DB_HOST="postgres" - export DB_PORT="5432" else export DB_HOST="127.0.0.1" - export DB_PORT="5442" fi + export DB_PORT="5442" uv run ruff check uv run python manage.py test