Skip to content

Commit 16d49d3

Browse files
committed
test: run meta-tests in CI
1 parent 6dd0643 commit 16d49d3

5 files changed

Lines changed: 683 additions & 6 deletions

File tree

.github/workflows/test.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Copyright (c) 2025 Columnar Technologies, Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Test
16+
17+
on:
18+
pull_request: {}
19+
push:
20+
branches:
21+
- main
22+
23+
defaults:
24+
run:
25+
shell: bash
26+
27+
permissions:
28+
contents: read
29+
30+
jobs:
31+
test:
32+
name: "Test"
33+
runs-on: ubuntu-latest
34+
35+
steps:
36+
- uses: actions/checkout@v4
37+
with:
38+
fetch-depth: 0
39+
persist-credentials: false
40+
41+
- uses: prefix-dev/setup-pixi@14c8aabd75893f83f4ab30c03e7cf853c8208961 # v0.8.10
42+
with:
43+
pixi-version: v0.44.0
44+
run-install: false
45+
46+
- name: Test
47+
run: pixi run --locked test

.rat-excludes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414

1515
adbc_drivers_validation/queries/*/*.json
1616
adbc_drivers_validation/queries/*/*.sql
17+
pixi.lock

0 commit comments

Comments
 (0)