fix: include superQuiet in 3-speed unit fan_speeds #10
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |