Skip to content

feat: add sql test workflow #2

feat: add sql test workflow

feat: add sql test workflow #2

Workflow file for this run

name: SQL Unit tests
on: [push, pull_request,repository_dispatch]
defaults:
run:
shell: bash
jobs:
unitTests:
name: C unit tests
runs-on: macos-latest
env:
GEN: ninja
steps:
- name: Install Ninja
run: brew install ninja
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Build Substrait
run: make release
- name: Build and run SQL unit tests
run: make test