File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,23 @@ jobs:
42
42
with :
43
43
python-version : " 3.8"
44
44
45
- - name : Install dependencies 🔧
45
+ - name : Install dependencies (Linux) 🔧
46
+ if : ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
46
47
run : |
47
48
python -VV
48
49
python -m site
49
50
python -m pip install --upgrade pip setuptools wheel
50
51
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
51
52
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
+
52
62
- name : " Run mypy"
53
63
if : steps.changes.outputs.code == 'true'
54
64
run : " python -m tox -e mypy -s false"
You can’t perform that action at this time.
0 commit comments