From 8e28b884e3e6b85eea17eb0b4b808f950dba85c5 Mon Sep 17 00:00:00 2001 From: ljnsn <82611987+ljnsn@users.noreply.github.com> Date: Thu, 22 Dec 2022 00:00:39 +0100 Subject: [PATCH] ci: add flake8 and mypy checks --- .github/workflows/lint_and_test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint_and_test.yml b/.github/workflows/lint_and_test.yml index e71d90e..0773098 100644 --- a/.github/workflows/lint_and_test.yml +++ b/.github/workflows/lint_and_test.yml @@ -40,6 +40,8 @@ jobs: run: | # stop the build if there are Python syntax errors or undefined names black --check --diff pandas_ods_reader/ tests/ + flake8 pandas_ods_reader/ tests/ + mypy pandas_ods_reader/ tests/ - name: Test with pytest run: | python -m pytest --cov tests/