Browse Source

install mypy stubs in ci

Daniel Busch 4 months ago
parent
commit
bfe05faeea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/workflows/ci.yaml

+ 1 - 1
.github/workflows/ci.yaml

@@ -21,7 +21,7 @@ jobs:
           poetry-dependency-install-flags: "--all-extras --only 'main,dev'"
       - name: mypy
         run: |
-          mypy --install-types
+          poetry run mypy --install-types
           MYPYPATH=stubs poetry run mypy src
 
   docs: