Fix(PLACEHOLDER-123): Error granting role pg_database_owner to postgres: pq: role pg_database_owner cannot have explicit members #42
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
pgversion: [15, 14, 13, 12, 11] | |
env: | |
PGVERSION: ${{ matrix.pgversion }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: test | |
run: make test | |
- name: vet | |
run: make vet | |
- name: testacc | |
run: make testacc |