From 97de934e7fac4fa8a45651c54cb285cf01db1675 Mon Sep 17 00:00:00 2001 From: Geoff Taylor Date: Thu, 14 Oct 2021 11:16:01 +0100 Subject: [PATCH] Trying to run mypy install types against current directory --- .github/workflows/validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 01c4683..3983de8 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -26,7 +26,7 @@ jobs: run: source .venv/bin/activate - name: Mypy test - run: .venv/bin/mypy --install-types --non-interactive + run: .venv/bin/mypy --install-types --non-interactive . - name: Install dependencies run: make setup