Skip to content

Bump codecov/codecov-action from 4 to 5 #15

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #15

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 .
- name: Run MyPy
run: |
mypy chatminer/ --install-types --non-interactive --ignore-missing-imports