Fix no_gaps rename constraint tracking #13
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: make installcheck | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
pg: | |
- 16 | |
- 15 | |
- 14 | |
- 13 | |
- 12 | |
- 11 | |
name: PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
steps: | |
- name: Start PostgreSQL ${{ matrix.pg }} | |
run: pg-start ${{ matrix.pg }} | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Test on PostgreSQL ${{ matrix.pg }} | |
# make && make install && make installcheck | |
run: pg-build-test |