Skip to content

🧪 Continuous Integration #18

🧪 Continuous Integration

🧪 Continuous Integration #18

Workflow file for this run

name: 🧪 Continuous Integration
on:
push:
branches: ['*']
pull_request:
schedule:
- cron: '0 12 5 * *' # Monthly at noon on the fifth
jobs:
build:
strategy:
matrix:
pg: [16, 15, 14, 13, 12]
name: 🐘 PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- run: NO_CLUSTER=1 pg-start ${{ matrix.pg }}
- uses: actions/checkout@v4
- run: chown -R postgres:postgres .
- run: gosu postgres pg-build-test