From 874f0447ba0d97aaec4c9b7b733ada55976916b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Fri, 18 Jun 2021 16:14:45 +0200 Subject: [PATCH] Install build requirements for mypy CI check Otherwise, the toml type hints are missing which mypy does not like. --- .github/workflows/main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 1d9f283..09d78e4 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -27,6 +27,7 @@ jobs: set -euo pipefail pip install mypy pip install -r requirements.txt + pip install -r build-requirements.txt - name: Typecheck run: | python -m mypy --config mypy.ini -p snikket_web