integrate heating rule fix and quality workflow
Some checks failed
Quality / test (push) Has been cancelled

This commit is contained in:
2026-06-10 21:59:38 +02:00
parent 29ec53cc5e
commit 1cb2630cec
6 changed files with 130 additions and 7 deletions

View File

@@ -0,0 +1,31 @@
name: Quality
on:
push:
branches:
- "**"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install project
run: python -m pip install --upgrade pip && python -m pip install -e ".[dev]"
- name: Run tests
run: pytest -q
- name: Run Ruff
run: ruff check .
- name: Run Mypy
run: mypy app tests