From db4f462859afa583e94106ba58f0e3e7be2601ff Mon Sep 17 00:00:00 2001 From: IgorVolochay Date: Fri, 31 Jan 2025 19:10:53 +0300 Subject: [PATCH] Update mypy Github action --- .github/workflows/mypy-test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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