diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index f15cc18..3c4402d 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -70,4 +70,6 @@ jobs: - name: Show working directory run: pwd && ls -la - name: Run mypy - run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*' \ No newline at end of file + run: | + echo "Running mypy on core modules only..." + mypy app/core app/models app/strategies app/services --ignore-missing-imports \ No newline at end of file diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index e0d8338..1f692a1 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -69,7 +69,9 @@ jobs: - name: Show working directory run: pwd && ls -la - name: Run mypy - run: mypy app scripts --ignore-missing-imports --exclude 'app/pages/.*' --exclude 'app/components/.*' + run: | + echo "Running mypy on core modules only..." + mypy app/core app/models app/strategies app/services --ignore-missing-imports build: runs-on: [linux, docker]