From e2115310b7ba477c4ea4990d71a087f266f9b19e Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Mon, 28 Dec 2020 12:50:42 -0600 Subject: [PATCH] More CI --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7160525..242ad7b3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,6 +22,8 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 + ports: + - 5432:5432 steps: @@ -36,5 +38,6 @@ jobs: - name: Test run: go test -v ./... env: - PGHOST: postgres + PGHOST: localhost + PGUSER: postgres PGPASSWORD: secret