Skip to content

Commit

Permalink
Added github action for regression tests
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrízio de Royes Mello <[email protected]>
  • Loading branch information
fabriziomello committed Sep 17, 2024
1 parent 8caecb5 commit b27298f
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
strategy:
matrix:
pg: [12, 13, 14, 15, 16]
name: 🐘 PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- run: pg-start ${{ matrix.pg }}
- uses: actions/checkout@v4
- run: pg-build-test

0 comments on commit b27298f

Please sign in to comment.