Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ name: Cargo Build & Test

on:
push:
branches:
- main
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
CARGO_TERM_COLOR: always

Expand Down Expand Up @@ -32,7 +38,7 @@ jobs:
with:
path: |
~/.pgrx/
key: pgrx-0.16.0
key: pgrx-0.16.1

- name: Install latest stable toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -44,7 +50,7 @@ jobs:
with:
packages: build-essential bison flex clang protobuf-compiler libreadline8 libreadline-dev
- name: Install pgrx
run: cargo install cargo-pgrx --version 0.16.0 --locked
run: cargo install cargo-pgrx --version 0.16.1 --locked
if: steps.cache_pgrx.outputs.cache-hit != 'true'
- run: cargo pgrx init
if: steps.cache_pgrx.outputs.cache-hit != 'true'
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ pg_test = []
[dependencies]
etcd-client = { version = "0.16", features = ["tls"] }
futures = "0.3.31"
pgrx = {version="=0.16.0"}
supabase-wrappers = {git="https://github.com/supabase/wrappers.git", branch="main",default-features = false}
pgrx = {version="=0.16.1"}
supabase-wrappers = { git="https://github.com/supabase/wrappers.git", branch="main", default-features = false }
thiserror = "2.0.16"
tokio = { version = "1.47.1", features = ["full"] }
testcontainers = { version = "0.25.0", features = ["blocking"] }
serde = { version = "1.0.226", features = ["derive"] }

[dev-dependencies]
pgrx-tests = "=0.16.0"
pgrx-tests = "=0.16.1"
testcontainers = { version = "0.25.0", features = ["blocking"] }
serde = { version = "1.0.226", features = ["derive"] }

Expand Down
Loading