Add doc for utils and schema functions (and use alphabetical order) #36
Workflow file for this run
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-24.04] PostgreSQL 16 and PostGIS 3.3" | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Building and testing | |
| runs-on: ubuntu-24.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 |