Skip to content

Issues 80: Fix typos in src/exec_state.cpp and src/parquet_impl.cpp #168

Issues 80: Fix typos in src/exec_state.cpp and src/parquet_impl.cpp

Issues 80: Fix typos in src/exec_state.cpp and src/parquet_impl.cpp #168

Workflow file for this run

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 }}