name: CI on: push: branches: [main] jobs: test: runs-on: ubuntu-latest container: python:3.11-slim steps: - uses: actions/checkout@v4 - name: Install dependencies run: | pip install pytest pytest-asyncio click cryptography pygments rich zeroconf pip install -e . - name: Run tests run: pytest tests/ -v