Skip to content

[CI] Introduce type checks #5

[CI] Introduce type checks

[CI] Introduce type checks #5

Workflow file for this run

name: mypy
on:
- pull_request
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install -r requirements.txt
- name: Run MyPy
run: |
mypy chatminer/ --install-types --non-interactive --ignore-missing-imports