Skip to content

docs: Resync documentation with implementation #11859

docs: Resync documentation with implementation

docs: Resync documentation with implementation #11859

name: Tests for TPCH Queries
on:
pull_request:
paths:
- "**.py"
- .github/workflows/check_tpch_queries.yml
- pyproject.toml
- uv.lock
env:
PY_COLORS: 1
UV_LOCKED: 1
UV_NO_DEV: 1
permissions:
contents: read
jobs:
validate-queries:
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Install uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: "true"
cache-suffix: ${{ matrix.python-version }}
cache-dependency-glob: "pyproject.toml"
- name: generate-data
run: make run-ci DEPS="--extra dask --extra pandas --group core-tests" CMD="--module tpch.generate_data --debug"
- name: tpch-tests
run: make run-ci DEPS="--extra dask --extra pandas --group core-tests" CMD="pytest tpch/tests"