Update mypy Github action

This commit is contained in:
IgorVolochay
2025-01-31 19:10:53 +03:00
parent 0616488f75
commit db4f462859
+2 -4
View File
@@ -3,7 +3,7 @@ name: mypy-test
on: on:
push: push:
paths: paths:
- 'app/*.py' - '**.py'
jobs: jobs:
mypy: mypy:
@@ -18,7 +18,5 @@ jobs:
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install mypy - name: Install mypy
run: pip install mypy run: pip install mypy
- name: Check Folders
run: ls
- name: Run mypy - name: Run mypy
run: mypy --ignore-missing-imports *.py run: mypy --ignore-missing-imports ./app