Skip to content

FIX: Use dev schema in Komodo bleeding #1850

FIX: Use dev schema in Komodo bleeding

FIX: Use dev schema in Komodo bleeding #1850

Workflow file for this run

name: Mypy
on:
pull_request:
branches: [main]
jobs:
mypy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dev-env.
run: |
pip install -U pip
pip install ".[dev]"
- name: Mypy
run: |
# Reinstall pydantic to force latest version
pip install -U pydantic
mypy .