From 806a022029d4c09413eb2353505a1c605e2aa35b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Molina=20Rebolledo?= Date: Tue, 5 Sep 2023 13:12:05 -0600 Subject: [PATCH] Mistakes were made --- .github/workflows/ci.yml | 2 ++ build.sbt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9c1b0e..cdbcaac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ on: env: PG_PASSWORD: test PG_HOST_PORT: 'localhost:5432' + PG_HOST: localhost + PG_PORT: 5432 PG_USER: postgres PG_DBNAME: finagle_postgres_test GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/build.sbt b/build.sbt index fa17769..73ee5f8 100644 --- a/build.sbt +++ b/build.sbt @@ -32,6 +32,8 @@ ThisBuild / githubWorkflowBuildPreamble ++= Seq( ) ThisBuild / githubWorkflowEnv ++= Map( "PG_HOST_PORT" -> "localhost:5432", + "PG_HOST" -> "localhost", + "PG_PORT" -> "5432", "PG_USER" -> "postgres", "PG_DBNAME" -> "finagle_postgres_test", "PG_PASSWORD" -> "test"