Skip to content

[codex] Prepare production QR-Line app #10

[codex] Prepare production QR-Line app

[codex] Prepare production QR-Line app #10

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: lint + type + tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.5.x"
enable-cache: true
cache-dependency-glob: uv.lock
- name: Set up Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --group dev --frozen
- name: Ruff lint
run: uv run ruff check .
- name: Pyright type check
run: uv run pyright
- name: Pytest
run: uv run pytest --cov=data --cov-report=term-missing