Skip to content

elimination of redundant mappers (#45) #299

elimination of redundant mappers (#45)

elimination of redundant mappers (#45) #299

Workflow file for this run

name: MyPy Type Checking
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
jobs:
mypy:
name: Mypy Type Checking
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "backend/uv.lock"
- name: Install Python and dependencies
run: |
cd backend
uv python install 3.12
uv sync --frozen
- name: Run mypy
env:
SECRET_KEY: ${{ secrets.TEST_SECRET_KEY }}
run: |
cd backend
uv run mypy --config-file pyproject.toml --strict .