Skip to content

fix: include superQuiet in 3-speed unit fan_speeds #10

fix: include superQuiet in 3-speed unit fan_speeds

fix: include superQuiet in 3-speed unit fan_speeds #10

name: Pull request check
on:
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13", "3.14"]
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit run --from-ref origin/master --to-ref HEAD
- name: Run tests
run: |
export PYTHONPATH=$PYTHONPATH:.
python -m unittest discover tests