Skip to content

Commit 32ab3fa

Browse files
Updated files with 'repo_helper'. (#94)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent dbf5fc4 commit 32ab3fa

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/mypy.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,23 @@ jobs:
4242
with:
4343
python-version: "3.8"
4444

45-
- name: Install dependencies 🔧
45+
- name: Install dependencies (Linux) 🔧
46+
if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
4647
run: |
4748
python -VV
4849
python -m site
4950
python -m pip install --upgrade pip setuptools wheel
5051
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
5152
53+
- name: Install dependencies (Windows) 🔧
54+
if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
55+
run: |
56+
python -VV
57+
python -m site
58+
python -m pip install --upgrade pip setuptools wheel
59+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
60+
choco install mingw -y
61+
5262
- name: "Run mypy"
5363
if: steps.changes.outputs.code == 'true'
5464
run: "python -m tox -e mypy -s false"

0 commit comments

Comments
 (0)