Skip to content

Commit ae543d3

Browse files
authored
Add Pg16 Support (#22)
* update cargo file, workflows and makefile * update function signatures * fix cargo fmt * bump version * add migration file * address comment * remove trailing comma for linter
1 parent 927d39c commit ae543d3

File tree

9 files changed

+329
-126
lines changed

9 files changed

+329
-126
lines changed

.github/workflows/extension_ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,11 @@ jobs:
4747
if: github.event_name == 'release'
4848
name: trunk publish
4949
runs-on: ubuntu-22.04
50+
strategy:
51+
matrix:
52+
pg: [ 14, 15, 16 ]
5053
steps:
51-
- uses: actions/checkout@v2
54+
- uses: actions/checkout@v4
5255
- name: Install Rust stable toolchain
5356
uses: actions-rs/toolchain@v1
5457
with:
@@ -69,7 +72,7 @@ jobs:
6972
cargo install pg-trunk
7073
- name: trunk build
7174
working-directory: ./
72-
run: trunk build
75+
run: trunk build --pg-version ${{ matrix.pg }}
7376
- name: trunk publish
7477
working-directory: ./
7578
env:

.vscode/settings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)