Skip to content

CodeAnt AI: Made Changes to the file #962

CodeAnt AI: Made Changes to the file

CodeAnt AI: Made Changes to the file #962

Workflow file for this run

name: Type Checking
on: [pull_request]
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install mypy
pip install types-setuptools
- name: Run type checker
run: |
mypy --config-file pyproject.toml .