Skip to content

docs: use absolute README links so they work on PyPI #38

docs: use absolute README links so they work on PyPI

docs: use absolute README links so they work on PyPI #38

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v3
with:
args: check .
- uses: astral-sh/ruff-action@v3
with:
args: format --check .
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- run: pip install -e ".[server,devices,test]"
- run: pytest -v