+
Some checks failed
Unit tests / test (push) Failing after 1m34s

This commit is contained in:
Оля Бизюкова 2024-12-17 15:31:47 +05:00
parent 6ae10ed795
commit 0591bfd923
3 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,7 @@ jobs:
image: postgres image: postgres
# Provide the password for postgres # Provide the password for postgres
env: env:
POSTGRES_HOST: postgres
POSTGRES_USER: postgres POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres POSTGRES_PASSWORD: postgres
# Set health checks to wait until postgres has started # Set health checks to wait until postgres has started

View File

@ -1,6 +1,6 @@
{ {
"DbConnection": { "DbConnection": {
"Host": "127.0.0.1", "Host": "postgres",
"Port": 5442, "Port": 5442,
"Username": "postgres", "Username": "postgres",
"Password": "postgres" "Password": "postgres"

View File

@ -6,7 +6,7 @@
} }
}, },
"ConnectionStrings": { "ConnectionStrings": {
"DefaultConnection": "Host=127.0.0.1;Port=5442;Database=persistence;Username=postgres;Password=postgres;Persist Security Info=True" "DefaultConnection": "Host=postgres;Port=5442;Database=persistence;Username=postgres;Password=postgres;Persist Security Info=True"
}, },
"AllowedHosts": "*", "AllowedHosts": "*",
"NeedUseKeyCloak": false, "NeedUseKeyCloak": false,