We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 510ac71 commit c1876f9Copy full SHA for c1876f9
.github/workflows/tests.yml
@@ -44,3 +44,25 @@ jobs:
44
run: poetry install
45
- name: Check ruff
46
run: poetry run ruff check .
47
+
48
+ mypy:
49
+ strategy:
50
+ fail-fast: false
51
+ matrix:
52
+ python-version: [3.12]
53
+ poetry-version: [1.8.3]
54
+ os: [ubuntu-latest]
55
+ runs-on: ${{ matrix.os }}
56
+ steps:
57
+ - uses: actions/checkout@v2
58
+ - uses: actions/setup-python@v2
59
+ with:
60
+ python-version: ${{ matrix.python-version }}
61
+ - name: Run image
62
+ uses: abatilo/[email protected]
63
64
+ poetry-version: ${{ matrix.poetry-version }}
65
+ - name: Install dependencies
66
+ run: poetry install
67
+ - name: Check mypy
68
+ run: poetry run mypy . --check-untyped-defs --disallow-untyped-defs --ignore-missing-imports
0 commit comments