Skip to content

Fix pipeline

Fix pipeline #3

Workflow file for this run

name: chDB-go
on:
push:
branches: [ "main" ]
paths-ignore:
- '**/.md'
jobs:
build:
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.20"
- name: Build
run: |
go mod tidy
make build
- name: Test
run: ./chdb-go "SELECT 12345"