Skip to content

Merge pull request #11 from rusiaaman/2.2 #37

Merge pull request #11 from rusiaaman/2.2

Merge pull request #11 from rusiaaman/2.2 #37

Workflow file for this run

name: Mypy strict
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
typecheck:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: |
pip install uv
uv venv --python "${{ matrix.python-version }}"
- name: Run type checks
run: |
uv run mypy --strict src