Skip to content

Release 0.14.1; require Python 3.11+, test on 3.11/3.13/3.14 #56

Release 0.14.1; require Python 3.11+, test on 3.11/3.13/3.14

Release 0.14.1; require Python 3.11+, test on 3.11/3.13/3.14 #56

Workflow file for this run

name: tests
on:
push:
branches: [main]
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.11", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python }}
- name: Run tests
run: uv run --with pytest --with pyserial --with pillow --with gpiozero pytest python/tests/ -q