Changed base postgres version to 16 and added automated docker build #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Install pgrx | |
run: cargo install cargo-pgrx --version 0.11.0 --locked | |
- name: Install Postgres | |
run: cargo pgrx init --pg15 download | |
- name: Run tests | |
run: cargo pgrx test pg15 |