Skip to content

Merge pull request #1 from chdb-io/feat/sql-interface #7

Merge pull request #1 from chdb-io/feat/sql-interface

Merge pull request #1 from chdb-io/feat/sql-interface #7

Workflow file for this run

name: chDB-go
on:
push:
branches: [ "main" ]
paths-ignore:
- '**/.md'
jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Fetch library
run: |
make install
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Build
run: |
go mod tidy
make build
- name: Test
run: LD_LIBRARY_PATH=./ ./chdb-go "SELECT 12345"
build_mac:
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Fetch library
run: |
make install
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Build
run: |
go mod tidy
make build
- name: Test
run: ./chdb-go "SELECT 12345"