Add query to get all functions and detect composite types in arguments and return values #83
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
pg-version: ['15', '14', '13'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: cachix/install-nix-action@v18 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Run tests | |
run: nix-shell --run "with-pg-${{ matrix.pg-version }} make installcheck" | |
- if: ${{ failure() }} | |
run: cat output/regression.diffs |