We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e171424 commit 91ce230Copy full SHA for 91ce230
.github/workflows/sql_tests.yml
@@ -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