Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

postgres 15 support #320

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
pgversion: [14, 13, 12, 11]
pgversion: [15, 14, 13, 12, 11]

env:
PGVERSION: ${{ matrix.pgversion }}
Expand All @@ -34,3 +34,9 @@ jobs:

- name: testacc
run: make testacc

- name: Test Summary
uses: test-summary/action@v2
with:
paths: "report.xml"
if: always()
3 changes: 2 additions & 1 deletion tests/testacc_full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ setup() {
}

run() {
go test -count=1 ./postgresql -v -timeout 120m
go install github.com/jstemmer/go-junit-report/v2@latest
go test -count=1 ./postgresql -v -timeout 120m 2>&1 | tee test_output.txt | go-junit-report -iocopy -set-exit-code -out report.xml

# keep the return value for the scripts to fail and clean properly
return $?
Expand Down