From 0286cf5fdf40e78e891f6a70714cd91bb8b9da67 Mon Sep 17 00:00:00 2001 From: pieterhelsen Date: Thu, 15 Jul 2021 15:24:01 +0200 Subject: [PATCH] Add dependencies for type checks --- .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