Issues 80: Fix typos in src/exec_state.cpp and src/parquet_impl.cpp #166
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: | |
branches: | |
- master | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
pg: [15, 14, 13, 12, 11, 10] | |
ccflags: [''] | |
include: | |
- pg: 13 | |
ccflags: '-DCACHING_TEST' | |
name: PostgreSQL ${{ matrix.pg }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: docker build -t parquet_fdw --build-arg PG_MAJOR=${{ matrix.pg }} . | |
- run: docker run --rm parquet_fdw | |
env: | |
CCFLAGS: ${{ matrix.ccflags }} |