Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.

Add live query runner tool #95

Add live query runner tool

Add live query runner tool #95

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Sync dependencies
run: uv sync --group dev --frozen
- name: Lint
run: uv run ruff check
- name: Format
run: uv run ruff format --check
- name: Type check
run: uv run ty check
- name: Tests
run: uv run pytest tests/ --import-mode importlib