Skip to content

feat: add Northwind sample DB setup and fix PostgreSQL schema defaults #16

feat: add Northwind sample DB setup and fix PostgreSQL schema defaults

feat: add Northwind sample DB setup and fix PostgreSQL schema defaults #16

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: uv sync --dev
- name: Ruff lint
run: uv run ruff check .
- name: Ruff format check
run: uv run ruff format --check .
- name: Type check with mypy
run: uv run mypy src/open_data_agent --ignore-missing-imports
- name: Run unit tests (no integration)
run: uv run pytest -m "not integration" --tb=short