+
Some checks failed
Unit tests / test (push) Failing after 12s

This commit is contained in:
Оля Бизюкова 2024-12-17 15:21:45 +05:00
parent b9285c912f
commit 03ebc73a87
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
# Label used to access the service container # Label used to access the service container
postgres: postgres:
# Docker Hub image # Docker Hub image
image: postgres image: postgres:15
# Provide the password for postgres # Provide the password for postgres
env: env:
POSTGRES_USER: postgres POSTGRES_USER: postgres
@ -24,7 +24,7 @@ jobs:
--health-retries 5 --health-retries 5
ports: ports:
# Maps tcp port 5432 on service container to the host # Maps tcp port 5432 on service container to the host
- 5442:5432 - 5432:5432
steps: steps:
- name: Setup dotnet - name: Setup dotnet

View File

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