Skip to content

Commit 91ce230

Browse files
committed
add sql test workflow
1 parent e171424 commit 91ce230

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/sql_tests.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: SQL Unit tests
2+
3+
on: [push, pull_request,repository_dispatch]
4+
5+
defaults:
6+
run:
7+
shell: bash
8+
9+
jobs:
10+
unitTests:
11+
name: SQL unit tests
12+
runs-on: macos-latest
13+
env:
14+
GEN: ninja
15+
16+
steps:
17+
- name: Install Ninja
18+
run: brew install ninja
19+
20+
- uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
submodules: true
24+
25+
- name: Build Substrait
26+
run: make release
27+
28+
- name: Run SQL unit tests
29+
run: make test
30+

0 commit comments

Comments
 (0)