We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 756d10e commit ca99615Copy full SHA for ca99615
.github/workflows/rust_ci.yml
@@ -3,7 +3,7 @@ env:
3
RUSTFLAGS: -Dwarnings
4
CARGO_TERM_COLOR: always
5
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6
- PG_VER: 16
+ PG_VER: 17
7
8
on:
9
pull_request_target:
@@ -45,6 +45,9 @@ jobs:
45
- uses: actions-rust-lang/setup-rust-toolchain@v1
46
- name: Install PostgreSQL
47
run: |
48
+ sudo apt install -y wget gnupg
49
+ sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
50
+ wget --quiet -O- https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
51
sudo apt update -y -qq
52
sudo apt install -y postgresql-server-dev-$PG_VER
53
- name: Install cargo pgrx
0 commit comments