-
Notifications
You must be signed in to change notification settings - Fork 61
47 lines (39 loc) · 1.03 KB
/
conformance.yml
File metadata and controls
47 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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