Skip to content

Merge: production-readiness pass (bug fixes, tests, tooling, docs) #1

Merge: production-readiness pass (bug fixes, tests, tooling, docs)

Merge: production-readiness pass (bug fixes, tests, tooling, docs) #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Lint (ruff)
run: ruff check .
- name: Test (pytest)
run: pytest