1 parent 3ab3c2c commit 25b6689Copy full SHA for 25b6689
1 file changed
.github/workflows/pgtest.yml
@@ -0,0 +1,24 @@
1
+name: Test PG extension
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+jobs:
9
+ pgversions:
10
+ uses: df7cb/pg-github-workflows/.github/workflows/pgversions.yml@main
11
12
+ pgtest:
13
+ needs: pgversions
14
+ runs-on: ubuntu-latest
15
+ strategy:
16
+ fail-fast: false
17
+ matrix:
18
+ pgversion: ${{ fromJson(needs.pgversions.outputs.pgversions) }}
19
+ steps:
20
+ - run: echo ${{ matrix.pgversion }}
21
+ - uses: df7cb/pg-github-workflows/.github/workflows/pginstall.yml@main
22
+ with:
23
+ pgversion: ${{ matrix.pgversion }}
24
+ - run: psql -c 'select version()'
0 commit comments