diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index fee3065..f32a860 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -64,11 +64,11 @@ jobs: run: | set -x python -m pip install --upgrade pip - pip install mypy + pip install mypy types-requests pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml pip list - name: Run mypy run: | echo "Running mypy on core modules..." - mypy app/core app/models app/strategies app/services --ignore-missing-imports --show-error-codes --show-traceback + mypy app/core app/models app/strategies app/services app/domain --ignore-missing-imports --show-error-codes --show-traceback echo "Type check completed successfully" \ No newline at end of file diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 50cfd90..7f91703 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -74,7 +74,7 @@ jobs: run: | set -x python -m pip install --upgrade pip - pip install mypy + pip install mypy types-requests pip install nicegui fastapi uvicorn yfinance polars pandas pydantic pyyaml databento pip list - name: Show working directory @@ -82,8 +82,8 @@ jobs: - name: Run mypy run: | echo "Running mypy on core modules..." - mypy app/core app/models app/strategies app/services --ignore-missing-imports --show-error-codes --show-traceback || true - echo "Type check completed (warnings allowed during development)" + mypy app/core app/models app/strategies app/services app/domain --ignore-missing-imports --show-error-codes --show-traceback + echo "Type check completed successfully" build: runs-on: [linux, docker]