From 03ebc73a87b482574bbf0bd60200e066742e9308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9E=D0=BB=D1=8F=20=D0=91=D0=B8=D0=B7=D1=8E=D0=BA=D0=BE?= =?UTF-8?q?=D0=B2=D0=B0?= Date: Tue, 17 Dec 2024 15:21:45 +0500 Subject: [PATCH] + --- .gitea/workflows/test.yaml | 4 ++-- DD.Persistence.App/appsettings.Tests.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index a6b89a0..da4af6b 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: # Label used to access the service container postgres: # Docker Hub image - image: postgres + image: postgres:15 # Provide the password for postgres env: POSTGRES_USER: postgres @@ -24,7 +24,7 @@ jobs: --health-retries 5 ports: # Maps tcp port 5432 on service container to the host - - 5442:5432 + - 5432:5432 steps: - name: Setup dotnet diff --git a/DD.Persistence.App/appsettings.Tests.json b/DD.Persistence.App/appsettings.Tests.json index a6c0bae..12e7db4 100644 --- a/DD.Persistence.App/appsettings.Tests.json +++ b/DD.Persistence.App/appsettings.Tests.json @@ -1,7 +1,7 @@ { "DbConnection": { "Host": "127.0.0.1", - "Port": 5442, + "Port": 5432, "Username": "postgres", "Password": "postgres" },