Skip to content

Merge pull request #66 from seanwevans/codex/add-role-creation-block-… #137

Merge pull request #66 from seanwevans/codex/add-role-creation-block-…

Merge pull request #66 from seanwevans/codex/add-role-creation-block-… #137

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install PostgreSQL and headers
run: |
sudo apt-get update
# Install the server, contrib modules and the development headers
sudo apt-get install -y postgresql postgresql-contrib libpq-dev postgresql-server-dev-16
- name: Start PostgreSQL
run: |
# Determine the installed major version and start the cluster
sudo pg_ctlcluster $(pg_config --version | awk '{print $2}' | cut -d. -f1) main start