From 06359013c99d58430fe33287849eedfaaff32925 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 26 Aug 2022 14:36:23 +0300 Subject: [PATCH] Run stubs self-check on all python versions (#1126) --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f2b0f4c..7442008 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,11 +50,8 @@ jobs: run: mypy --strict django_stubs_ext - name: Run mypy on scripts and utils run: mypy --strict scripts - # TODO: run this check on versions, not only 3.10 - name: Run mypy on stubs - if: ${{ matrix.python-version }} == '3.10' - run: | - mypy --cache-dir=/dev/null --no-incremental django-stubs + run: mypy --cache-dir=/dev/null --no-incremental django-stubs test: runs-on: ubuntu-latest