From acf69d718cb025bb2bbbfd1216d445944a9115cb Mon Sep 17 00:00:00 2001 From: Arno Kaimbacher Date: Mon, 27 Jan 2025 09:26:26 +0100 Subject: [PATCH] test 11 --- .gitea/workflows/checkReferenceType.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/checkReferenceType.yaml b/.gitea/workflows/checkReferenceType.yaml index 356239e..07595bf 100644 --- a/.gitea/workflows/checkReferenceType.yaml +++ b/.gitea/workflows/checkReferenceType.yaml @@ -18,7 +18,7 @@ jobs: POSTGRES_DB: tethys_dev ports: # Maps tcp port 5432 on service container to the host - - 5432:5432 + - 5433:5433 # Set health checks to wait until postgres has started options: | --health-cmd pg_isready @@ -28,7 +28,7 @@ jobs: --health-retries 5 env: POSTGRES_HOST: localhost - POSTGRES_PORT: 5432 + POSTGRES_PORT: 5433 POSTGRES_PASSWORD: iEx4Vj7zBb6 POSTGRES_USER: alice steps: @@ -52,7 +52,7 @@ jobs: run: | echo "DB_CONNECTION=pg" >> .env.test echo "PG_HOST=localhost" >> .env.test - echo "PG_PORT=5432" >> .env.test + echo "PG_PORT=5433" >> .env.test echo "PG_USER=alice" >> .env.test echo "PG_PASSWORD=iEx4Vj7zBb6" >> .env.test echo "PG_DB_NAME=tethys_dev" >> .env.test