Skip to content

Add evaluation module and update Gradio v5 #9

Add evaluation module and update Gradio v5

Add evaluation module and update Gradio v5 #9

Workflow file for this run

name: Check src files for typing with mypy
on:
push:
branches: main
paths:
- 'src/**'
- 'pyproject.toml'
- '.github/workflows/mypy.yml'
pull_request:
paths:
- 'src/**'
- 'pyproject.toml'
- '.github/workflows/mypy.yml'
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: 'pip'
- name: Install dependencies
run: pip install -r dev-requirements.txt -r eval-requirements.txt
- name: Check typing with MyPy
run: mypy src