diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index c7a728b..f15cc18 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -67,5 +67,7 @@ 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 \ No newline at end of file + run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*' \ No newline at end of file diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index a1fe375..e0d8338 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -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]