Skip to content

Implement fmt::Display for the custom errors #24

Implement fmt::Display for the custom errors

Implement fmt::Display for the custom errors #24

Workflow file for this run

name: Test
on:
push:
branches:
- ghat
- main
jobs:
test:
strategy:
fail-fast: false
matrix:
pg: [16, 15, 14, 13, 12, 11]
name: PostgreSQL ${{ matrix.pg }}
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
steps:
- name: Start PostgreSQL ${{ matrix.pg }}
run: pg-start ${{ matrix.pg }}
- name: Check out repository code
uses: actions/checkout@v2
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build pg_split_dump
run: cargo build --verbose
- name: Build tar_diff
working-directory: tar_diff
run: cargo build --verbose
- name: Build create_expected_archive
working-directory: tests/bin/create_expected_archive
run: cargo build --verbose
- name: Test on PostgreSQL ${{ matrix.pg }}
working-directory: tests
run: ./run_tests.sh