WIP: Pg16 tests #19
Workflow file for this run
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: "[ubuntu-22.04] PostgreSQL 12 and PostGIS 3.3" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
name: Building and testing | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Install PostgreSQL and PostGIS | |
env: | |
POSTGRESQL_VERSION: 14 | |
POSTGIS_VERSION: 3 | |
run: .github/scripts/postgresql_postgis.sh | |
- name: Install and check PgPointCloud | |
run: .github/scripts/pgpointcloud.sh | |
- name: Error | |
if: ${{ failure() }} | |
run: cat pgsql/regression.diffs | |
- name: Dump and restore tests | |
run: .github/scripts/test_dump_restore.sh |