Skip to content

CLI tweaks

CLI tweaks #25

Workflow file for this run

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 tests
run: make test