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 ed7c5c9Copy full SHA for ed7c5c9
.github/workflows/sql_tests.yml
@@ -0,0 +1,27 @@
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: C 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 and run SQL unit tests
26
+ run: make test
27
0 commit comments