Skip to content

fix(formatters): carry reminder_time through to_dict projections (CDI… #79

fix(formatters): carry reminder_time through to_dict projections (CDI…

fix(formatters): carry reminder_time through to_dict projections (CDI… #79

Workflow file for this run

# CI: lint and run tests (CI-safe; Things 3 not available in CI)
name: Tests
on:
push:
branches: [source]
pull_request:
branches: [source]
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: uv sync --group dev
- name: Security audit (pip-audit)
run: uvx pip-audit
- name: Ruff check
run: uv run ruff check .
- name: Ruff format (check only)
run: uv run ruff format --check .
- name: Pytest (CI-safe, excludes real/Things 3 tests)
run: uv run python -m pytest tests -v