Skip to content

.github: Upgrade checkout action version #38

.github: Upgrade checkout action version

.github: Upgrade checkout action version #38

Workflow file for this run

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
- 9.6
- 9.5
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 -u postgres createuser -s "$USER"
- name: build
run: |
make PROFILE="-Werror"
sudo -E make install
- name: test
run: |
make installcheck
- name: show regression diffs
if: ${{ failure() }}
run: |
cat regression.diffs