Replace "startsWith(matrix.os, 'windows')" by "runner.os == 'Windows'" in GitHub Actions configurations

This commit is contained in:
Yannick Jadoul
2020-06-10 01:53:41 +02:00
parent cc8dbbe8b3
commit 57e6f0f56d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ jobs:
python -m pip install cibuildwheel==1.4.2
- name: Install Visual C++ for Python 2.7
if: startsWith(matrix.os, 'windows')
if: runner.os == 'Windows'
run: |
choco install vcpython27 -f -y