From 044406c9174fc55b0d3a4f2f51d1a702cc836b53 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 26 Apr 2023 15:06:27 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d2339cb9..bfc45ec2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,11 +49,11 @@ jobs: ports: - '5432/tcp' env: - PGPASSWORD: '${POSTGRES_PASSWORD:-postgres}' - PGPORT: '${POSTGRES_PORT:-5432}' + PGPASSWORD: 'postgres' + PGPORT: '5432/tcp' POSTGRES_DB: main - POSTGRES_USER: '${POSTGRES_USER:-postgres}' - POSTGRES_PASSWORD: '${POSTGRES_PASSWORD:-postgres}' + POSTGRES_USER: 'postgres' + POSTGRES_PASSWORD: 'postgres' healthcheck: test: - CMD @@ -62,7 +62,7 @@ jobs: - '-d' - '${DB_DATABASE}' - '-U' - - '${DB_USERNAME}' + - '${POSTGRES_USER}' retries: 3 timeout: 5s