Merge pull request #377 from pblottiere/doc_utility_functions #59
This file contains hidden or 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 16 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: 16 | |
| 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 |