Skip to content

Actual and Set temperature for HK 3 fix for HPA-O 13 Premium #82

Actual and Set temperature for HK 3 fix for HPA-O 13 Premium

Actual and Set temperature for HK 3 fix for HPA-O 13 Premium #82

name: Test python package
on:
push:
pull_request:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc # v6.4.3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --locked --all-extras --dev
- name: Run Ruff
run: uv run ruff check . --output-format=github
- name: Run type checks
run: uv run mypy pystiebeleltron --show-error-codes --pretty
- name: Run tests
run: |
uv run pytest \
-qq \
--durations=10 \
-o console_output_style=count \
-p no:sugar \
test