Skip to content

chore(deps): update parquet/arrow/arrow-csv from 56 to 57.1 (#200) #243

chore(deps): update parquet/arrow/arrow-csv from 56 to 57.1 (#200)

chore(deps): update parquet/arrow/arrow-csv from 56 to 57.1 (#200) #243

Workflow file for this run

name: Conformance tests
on:
push:
branches: ["main"]
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch: # Allow manual triggering
env:
CARGO_TERM_COLOR: always
jobs:
# Conformance tests (compare to existing implementation)
conformance-test:
name: TPC-H Conformance Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Cache Rust dependencies
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Make conformance script executable
run: chmod +x ./tests/conformance.sh
- name: Run Conformance Tests
run: ./tests/conformance.sh