Skip to content

Update README.md

Update README.md #11

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
- name: Install dependencies
run: uv sync
- name: Run tests
run: uv run pytest tests/ -v --tb=short
- name: Run integration smoke tests (real PyQt6, offscreen)
run: uv run pytest tests_smoke/ -v --tb=short
- name: Run ruff linting
run: uv run ruff check src/ tests/ tests_smoke/