Add debugging to type-check and exclude pages/components from mypy

This commit is contained in:
Bu5hm4nn
2026-03-22 10:44:54 +01:00
parent 27a07eaa9f
commit 87aeb77f30
2 changed files with 6 additions and 2 deletions

View File

@@ -66,8 +66,10 @@ jobs:
pip install mypy
pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml
pip list
- name: Show working directory
run: pwd && ls -la
- name: Run mypy
run: mypy app scripts --ignore-missing-imports
run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*'
build:
runs-on: [linux, docker]