File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 5858 - name : Test wheel installation on Windows
5959 if : startsWith(matrix.os, 'windows')
6060 run : |
61- for f in dist/*.whl; do pip install "$f"; done
61+ Get-ChildItem dist/*.whl | ForEach-Object { pip install $_.FullName }
6262 pip uninstall -y memoryos
6363 - name : Test wheel installation on Linux / Mac
6464 if : ${{ !startsWith(matrix.os, 'windows') }}
6868 - name : Test sdist installation on Windows
6969 if : startsWith(matrix.os, 'windows')
7070 run : |
71- for f in dist/*.tar.gz; do pip install "$f"; done
71+ Get-ChildItem dist/*.tar.gz | ForEach-Object { pip install $_.FullName }
7272 pip uninstall -y memoryos
7373 - name : Test sdist installation on Linux / Mac
7474 if : ${{ !startsWith(matrix.os, 'windows') }}
You can’t perform that action at this time.
0 commit comments