Yet another CI tweak

This commit is contained in:
Jack Christensen 2020-12-28 13:02:34 -06:00
parent be67555d02
commit 6e11216708

View File

@ -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: