From 2c9ca8356c6c2204bac2e4b1258b5b394c8fe9e9 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Mon, 4 May 2026 23:27:13 +0530 Subject: [PATCH] refactor: move database connection variables to workflow environment definition --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 69e2541..67b0ce9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,8 @@ env: DB_NAME: piku_test_db DB_USER: test DB_PASSWORD: password123 + DB_HOST: postgres + DB_PORT: 5432 jobs: setup-environment: @@ -93,8 +95,6 @@ jobs: - name: Setup DB connection Variables run: | - export DB_HOST=postgres - export DB_PORT=5432 cp ../.env.example ../.env uv sync