Skip to content

Fix mypy post-uv migration #42

Fix mypy post-uv migration

Fix mypy post-uv migration #42

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
uses: actions/setup-python@v3
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install dependencies
run: |
uv build
- name: Typecheck with mypy
run: |
uv run mypy .