From 6e11216708bb4c097c3b54cc19de371d036a30dc Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Mon, 28 Dec 2020 13:02:34 -0600 Subject: [PATCH] Yet another CI tweak --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30e17b6a..4b5a72f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,14 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v2 + - name: Create hstore extension + run: psql -c 'create extension hstore' + env: + PGHOST: localhost + PGUSER: postgres + PGPASSWORD: secret + PGSSLMODE: disable + - name: Test run: go test -v ./... env: