From 7a1b4b0d8bc6d42234d04be7feea3c6e3f29c97b Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sat, 30 Mar 2024 10:26:40 -0700 Subject: [PATCH] Attempt to add mypy to CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79bda05..d8267aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,8 @@ jobs: meshtastic --version - name: Run pylint run: pylint meshtastic examples/ --ignore-patterns ".*_pb2.pyi?$" + - name: Check types with mypy + run: mypy meshtastic/ - name: Run tests with pytest run: pytest --cov=meshtastic - name: Generate coverage report