diff --git a/.github/workflows/mypy-test.yml b/.github/workflows/mypy-test.yml index fd87d33..0ac5f6c 100644 --- a/.github/workflows/mypy-test.yml +++ b/.github/workflows/mypy-test.yml @@ -3,7 +3,7 @@ name: mypy-test on: push: paths: - - 'app/*.py' + - '**.py' jobs: mypy: @@ -18,7 +18,5 @@ jobs: uses: actions/checkout@v3 - name: Install mypy run: pip install mypy - - name: Check Folders - run: ls - name: Run mypy - run: mypy --ignore-missing-imports *.py + run: mypy --ignore-missing-imports ./app