name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest steps: - name: Install dependencies run: | pip install -e . pytest pytest-asyncio - name: Run tests run: | python -m pytest tests/ -v