From 8e47c12416b6ec92da63edd3f3790c05ade28307 Mon Sep 17 00:00:00 2001 From: Bastian Leykauf Date: Thu, 23 Nov 2023 23:29:27 +0100 Subject: [PATCH] add mypy to tests --- .github/workflows/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 82e7f78..8327852 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,9 +20,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install . pytest + pip install .[tests] - name: Run pytest run: pytest . + - name: Run mypy + run: mypy . coverage: needs: