Skip to content

Document OrcaRouter as an OpenAI-compatible gateway for AI-assisted SQL generation #1205

Document OrcaRouter as an OpenAI-compatible gateway for AI-assisted SQL generation

Document OrcaRouter as an OpenAI-compatible gateway for AI-assisted SQL generation #1205

Workflow file for this run

name: Pull-CI
on:
pull_request:
types: [opened, synchronize]
jobs:
build:
env:
PYTHON_VERSIONS: "3.11"
runs-on: gh-64c
steps:
- name: Clone chDB repository
uses: actions/checkout@v2
with:
repository: "chdb-io/chdb"
ref: "refs/pull/${{ github.event.pull_request.number }}/merge"
token: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install ruff
run: python -m pip install ruff
- name: Lint datastore with ruff
run: |
# Configuration in pyproject.toml [tool.ruff]
ruff check datastore --statistics