This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
Merge pull request #90 from databendlabs/fix/batch-insert #263
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |