Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

fix: batch insert using attachment #259

fix: batch insert using attachment

fix: batch insert using attachment #259

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- name: Start databend-server
run: make up
- name: Test
env:
TEST_DATABEND_DSN: "http://root:@localhost:8000/default"
run: |
make lint
make ci