From 6eae548d1ff4ed444e7d67a523e7daca397c4339 Mon Sep 17 00:00:00 2001 From: pieterhelsen Date: Thu, 15 Jul 2021 16:00:06 +0200 Subject: [PATCH] CI: Add dependencies for type checks (#266) --- .github/workflows/ci-workflow.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 8446891..8901343 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -26,6 +26,7 @@ jobs: run: | python -m pip install --upgrade pip pip install black flake8 mypy + pip install types-PyYAML types-python-dateutil types-paramiko types-retry if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Format check with Black run: black --check src tests