We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1a96dd commit 03c1fceCopy full SHA for 03c1fce
1 file changed
.github/workflows/noble_postgres13_postgis33.yml
@@ -0,0 +1,27 @@
1
+name: "[ubuntu-24.04] PostgreSQL 13 and PostGIS 3.3"
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ name: Building and testing
12
+ runs-on: ubuntu-24.04
13
+ steps:
14
+ - name: Check out repository code
15
+ uses: actions/checkout@v2
16
+ - name: Install PostgreSQL and PostGIS
17
+ env:
18
+ POSTGRESQL_VERSION: 13
19
+ POSTGIS_VERSION: 3
20
+ run: .github/scripts/postgresql_postgis.sh
21
+ - name: Install and check PgPointCloud
22
+ run: .github/scripts/pgpointcloud.sh
23
+ - name: Error
24
+ if: ${{ failure() }}
25
+ run: cat pgsql/regression.diffs
26
+ - name: Dump and restore tests
27
+ run: .github/scripts/test_dump_restore.sh
0 commit comments