Added Postgres 15 to CI

This commit is contained in:
Andrew Kane
2022-10-14 13:42:04 -07:00
parent 66a31bef36
commit 9a58ee609a
4 changed files with 19 additions and 5 deletions

View File

@@ -7,12 +7,12 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
postgres: [14, 13, 12, 11, 10, 9.6]
postgres: [15, 14, 13, 12, 11, 10, 9.6]
include:
- os: macos-latest
postgres: 14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
@@ -33,6 +33,6 @@ jobs:
- if: ${{ startsWith(matrix.os, 'macos') }}
run: |
brew install cpanm && cpanm IPC::Run
wget -q https://github.com/postgres/postgres/archive/refs/tags/REL_14_4.tar.gz
tar xf REL_14_4.tar.gz
make prove_installcheck PROVE=prove PERL5LIB="postgres-REL_14_4/src/test/perl:/Users/runner/perl5/lib/perl5"
wget -q https://github.com/postgres/postgres/archive/refs/tags/REL_14_5.tar.gz
tar xf REL_14_5.tar.gz
make prove_installcheck PROVE=prove PERL5LIB="postgres-REL_14_5/src/test/perl:/Users/runner/perl5/lib/perl5"