about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/python-app.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml
index 4e76600..2304e35 100644
--- a/.github/workflows/python-app.yml
+++ b/.github/workflows/python-app.yml
@@ -24,9 +24,12 @@ jobs:
       run: |
         python -m pip install --upgrade pip
         if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+    - name: Type check with mypy
+      run: |
+        mypy .
     - name: Lint with pylint
       run: |
         pylint *py tests gn3
-    - name: Test with pytest
+    - name: Run unittests
       run: |
         python -m unittest discover -v