Skip to content

add test for pg16

add test for pg16 #41

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
test:
strategy:
matrix:
pg: [16, 15, 14, 13, 12, 11, 10]
name: 🐘 PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- run: pg-start ${{ matrix.pg }}
- uses: actions/checkout@v2
- run: make install
- run: chmod a+w $(pwd)
- run: su postgres -c 'make installcheck'
- run: cat regression.diffs
if: ${{ failure() }}