Skip to content

CI

CI #22

Workflow file for this run

# originally copied from https://github.com/theory/kv-pair/blob/main/.github/workflows/ci.yml
#
name: CI
on:
push:
pull_request:
schedule:
- cron: '0 12 15 * *' # Monthly at noon on the 15th
jobs:
build:
strategy:
matrix:
pg: [16, 15, 14, 13]
name: 🐘 PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- run: pg-start ${{ matrix.pg }}
- uses: actions/checkout@v3
- run: pg-build-test