Skip to content

[AITP] Update version for toto-ts #139

[AITP] Update version for toto-ts

[AITP] Update version for toto-ts #139

Workflow file for this run

name: MyPy Type Checking
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
run-mypy:
name: Run Type Checking
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 1
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.10"
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run MyPy
run: mypy toto --config-file mypy.ini --check-untyped-defs