Update dependencies and migrate to dbus-fast type annotations #34
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: Lint and test | |
| on: pull_request | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| # Tests need access to system packages (for dbus-python) | |
| os: [ | |
| "ubuntu-22.04", # Python 3.10, BlueZ 5.64, dbus-python 1.2.18 | |
| "ubuntu-24.04", # Python 3.12, BlueZ 5.72, dbus-python 1.3.2 | |
| ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: make .venv | |
| - name: Run lint | |
| run: make lint | |
| - name: Run typecheck | |
| run: make typecheck | |
| - name: Run tests | |
| run: make test |