name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest container: python:3.11-slim steps: - name: Install package run: pip install -e . pytest pytest-asyncio && python -m pytest tests/ -v