Skip to content

test: run query engine tests with query compiler #39

test: run query engine tests with query compiler

test: run query engine tests with query compiler #39

name: "QC"
on:
push:
branches:
- main
pull_request:
paths-ignore:
- "!.github/workflows/test-query-compiler.yml"
- "!.github/workflows/test-query-compiler-template.yml"
- ".github/**"
- ".buildkite/**"
- "*.md"
- "LICENSE"
- "CODEOWNERS"
- "renovate.json"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
qe-tests-with-qc:
strategy:
fail-fast: false
matrix:
adapter:
- name: pg
setup_task: dev-pg-qc
ignored_tests_list: query-compiler/query-engine-tests-todo/pg/timeout
should_fail_tests_list: query-compiler/query-engine-tests-todo/pg/fail
name: ${{ matrix.adapter.name }}
uses: ./.github/workflows/test-query-compiler-template.yml
with:
setup_task: ${{ matrix.adapter.setup_task }}
ignored_tests_list: ${{ matrix.ignored_tests_list }}
should_fail_tests_list: ${{ matrix.should_fail_tests_list }}