From 8994023a86139bc73a5b70df2364aa05d28d0c0e Mon Sep 17 00:00:00 2001 From: "repo-helper[bot]" <74742576+repo-helper[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 14:34:26 +0100 Subject: [PATCH] Updated files with 'repo_helper'. --- .github/workflows/mypy.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mypy.yml b/.github/workflows/mypy.yml index 10c6f30..ac54374 100644 --- a/.github/workflows/mypy.yml +++ b/.github/workflows/mypy.yml @@ -42,13 +42,23 @@ jobs: with: python-version: "3.8" - - name: Install dependencies 🔧 + - name: Install dependencies (Linux) 🔧 + if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }} run: | python -VV python -m site python -m pip install --upgrade pip setuptools wheel python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 + - name: Install dependencies (Windows) 🔧 + if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }} + run: | + python -VV + python -m site + python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0 + choco install mingw -y + - name: "Run mypy" if: steps.changes.outputs.code == 'true' run: "python -m tox -e mypy -s false"