From 8afebc1f173828079b90cbca4d193c091da5cc42 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Tue, 13 Dec 2022 13:20:01 +0100 Subject: [PATCH] ci: mypy: enable --check-untyped-defs --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ed866547..ed635959 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: - name: Lint with pycodestyle run: pycodestyle --show-source capa/ scripts/ tests/ - name: Check types with mypy - run: mypy --config-file .github/mypy/mypy.ini capa/ scripts/ tests/ + run: mypy --config-file .github/mypy/mypy.ini --check-untyped-defs capa/ scripts/ tests/ rule_linter: runs-on: ubuntu-20.04