Add more pg_catalog
schemas
#165
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: Test PostgreSQL Client integrations | |
on: [pull_request] | |
concurrency: | |
group: ci-postgres-client-tests-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
postgres_client_integrations_job: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 45 | |
name: Run tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build docker image | |
run: docker build -t postgres-client-tests --file testing/PostgresDockerfile . | |
- name: Run tests | |
run: docker run --detach=false postgres-client-tests |