From 9171e08fcd0f3abf01c13f9e26e3fc84dd996f56 Mon Sep 17 00:00:00 2001 From: greysoh Date: Fri, 10 May 2024 17:55:24 -0400 Subject: [PATCH] fix: Fixes automated testing once again. --- .github/workflows/api-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api-testing.yml b/.github/workflows/api-testing.yml index a3af292..0438029 100644 --- a/.github/workflows/api-testing.yml +++ b/.github/workflows/api-testing.yml @@ -13,7 +13,7 @@ defaults: working-directory: api env: - DATABASE_URL: "postgresql://nextnet:nextnet@127.0.0.1:5432/nextnet?schema=nextnet" + DATABASE_URL: "postgresql://nextnet:nextnet@localhost:5432/nextnet?schema=nextnet" jobs: test: @@ -23,8 +23,8 @@ jobs: postgres: image: postgres env: - POSTGRES_USERNAME: nextnet POSTGRES_PASSWORD: nextnet + POSTGRES_USER: nextnet POSTGRES_DB: nextnet options: >- --health-cmd pg_isready