Type-check only core modules (core, models, strategies, services)

This commit is contained in:
Bu5hm4nn
2026-03-22 10:45:56 +01:00
parent 87aeb77f30
commit 2da10c5b51
2 changed files with 6 additions and 2 deletions

View File

@@ -70,4 +70,6 @@ jobs:
- name: Show working directory - name: Show working directory
run: pwd && ls -la run: pwd && ls -la
- name: Run mypy - 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

View File

@@ -69,7 +69,9 @@ jobs:
- name: Show working directory - name: Show working directory
run: pwd && ls -la run: pwd && ls -la
- name: Run mypy - 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: build:
runs-on: [linux, docker] runs-on: [linux, docker]