Skip to content

chore: add description to pyproject #214

chore: add description to pyproject

chore: add description to pyproject #214

Workflow file for this run

name: MyPy Type Checking
on:
push:
branches: [main]
pull_request:
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv sync
- name: install mypy
run: uv pip install mypy
- name: Type Check Source Code
run: uv run mypy src