name: CI on: push jobs: test: runs-on: ubuntu-latest container: python:3.11-slim steps: - name: Install run: pip install -e . pytest pytest-asyncio - name: Run tests run: pytest tests/ -v