Update code of mgist and mspgist to PG 17.0 (#21) #5
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: mest-check | |
on: | |
push: | |
branches: ['*'] | |
pull_request: | |
branches: ['*'] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
pg: [17] | |
name: PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
steps: | |
# Install PostgreSQL | |
- uses: adjust/pg-ext-actions/pg-setup@master | |
with: | |
version: ${{ matrix.pg }} | |
install-contrib: 'false' | |
# Clone and build extension, run tests | |
- uses: actions/checkout@v2 | |
- uses: adjust/pg-ext-actions/build-check@master |