From 6f3ac8d9c523a80b5801afcd9e720f9655e19d73 Mon Sep 17 00:00:00 2001 From: Humberto Rocha Date: Thu, 14 Jan 2021 17:07:21 -0500 Subject: [PATCH] Add typecheck step to build --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 32a679f..6755646 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,9 +20,12 @@ jobs: run: | pip install poetry poetry install - - name: Lint with flake8 + - name: Lint check with flake8 run: | make lint + - name: Type check with mypy + run: | + make typecheck - name: Test with nosetests run: | make cover