Have the follow process read the schema from disk when it's been expo… #888
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: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build_package: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
PGVERSION: | |
- 16 | |
TEST: | |
- ci | |
- pagila | |
- pagila-multi-steps | |
- unit | |
- blobs | |
- filtering | |
- extensions | |
- cdc-low-level | |
- cdc-test-decoding | |
- cdc-endpos-between-transaction | |
- cdc-wal2json | |
- follow-wal2json | |
- follow-9.6 | |
- follow-data-only | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # all history for all branches and tags | |
- name: Set Version String From .git | |
run: make version | |
- name: Set environment variables | |
run: | | |
echo "TEST=${{ matrix.TEST }}" >> $GITHUB_ENV | |
- name: Run a test | |
timeout-minutes: 5 | |
run: | | |
make tests/${TEST} |