Skip to content

Commit 6231e3e

Browse files
committed
report postgres version
1 parent 082c3d7 commit 6231e3e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/package-test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@ jobs:
3030
- name: Rustup
3131
run: $TOOL_DIR/rustup.sh nightly
3232

33+
- name: Report version
34+
run: |
35+
cargo --version
36+
pg_config --version
37+
3338
- name: Install cargo pgrx
3439
run: cargo +nightly install --path cargo-pgrx --debug
3540

.github/workflows/runas.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
sudo apt-get install -y postgresql-server-dev-14
2727
2828
- name: Report version
29-
run: cargo --version
29+
run: |
30+
cargo --version
31+
pg_config --version
3032
3133
- name: Install cargo pgrx
3234
run: cd cargo-pgrx && cargo install --path . --debug

0 commit comments

Comments
 (0)