From c32274eb95f2092b79571c609c1d396eb1f944f6 Mon Sep 17 00:00:00 2001 From: gitaroktato Date: Tue, 9 Apr 2024 17:21:59 +0200 Subject: [PATCH] fix: Adding dependencies for mypy --- .github/workflows/python-app.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index e05cf95..7d38b2c 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -48,7 +48,10 @@ jobs: - name: Checkout uses: actions/checkout@v1 - name: Install mypy - run: pip install mypy + run: | + python -m pip install --upgrade pip + pip install mypy + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Run mypy uses: sasanquaneuf/mypy-github-action@releases/v1 with: