Skip to content

Commit

Permalink
Run regression tests in GitHub action
Browse files Browse the repository at this point in the history
Ignore t/02_same_schema, it's currently broken
  • Loading branch information
df7cb committed Aug 7, 2023
1 parent 88ec7e2 commit 76b4316
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/regression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Build

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

defaults:
run:
shell: sh

strategy:
matrix:
pgversion:
- 16
- 15
- 14
- 13
- 12
- 11
- 10

env:
PGVERSION: ${{ matrix.pgversion }}

steps:
- name: checkout
uses: actions/checkout@v3

- name: install pg
run: |
sudo /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -v $PGVERSION -p -i
sudo apt-get install -f libdbd-pg-perl
sudo -u postgres createuser -s "$USER"
- name: test
run: |
# 02_same_schema test currently broken
rm -fv t/02_same_schema.t
LC_ALL=C PERL_USE_UNSAFE_INC=1 PGBINDIR=/usr/lib/postgresql/$PGVERSION/bin prove t

0 comments on commit 76b4316

Please sign in to comment.