From f4f60765286762bbce48972542e6707e4e2e45b6 Mon Sep 17 00:00:00 2001 From: Glyph Date: Fri, 15 Mar 2024 21:26:59 -0700 Subject: [PATCH] line up auth This commit was sponsored by Jason Walker, Sergio Bost, Matt Campbell, and my other patrons. If you want to join them, you can support my work at https://glyph.im/patrons/. --- .github/workflows/cicd.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 7ad740b..b14c04a 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -208,9 +208,10 @@ jobs: postgres16: image: "${{ matrix.pg-image }}" env: - POSTGRES_DB: test - POSTGRES_PASSWORD: pass - POSTGRES_PORT: 5432 + POSTGRES_DB: "ghapgdb" + POSTGRES_USER: "ghapguser" + POSTGRES_PASSWORD: "ghapgpass" + POSTGRES_PORT: "5432" ports: - 5432:5432 options: >- @@ -300,10 +301,12 @@ jobs: - name: Run unit tests run: tox run -e ${TOX_ENV} env: - PGPORT: "5432" PGHOST: "localhost" - PGDATABASE: "test" - PGPASSWORD: "pass" + PGPORT: "5432" + + PGUSER: "ghapguser" + PGDATABASE: "ghapgdb" + PGPASSWORD: "gpapgpass" - name: Combine coverage run: tox run -e coverage_combine,coverage_report