Skip to content

feat: initial event loop #7

feat: initial event loop

feat: initial event loop #7

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v5
- name: "Set up Python"
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync dependencies
run: uv sync --all-packages --all-groups
- name: Run tests
run: uv run pytest
- name: Run linter
run: uv run ruff check .
- name: Run mypy
run: uv run mypy .
- name: Run basedpyright
run: uv run basedpyright .