File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -220,11 +220,16 @@ jobs:
220220 python -m pip install --disable-pip-version-check ${{ inputs.requirements }}
221221 fi
222222
223- - name : 🔧 Install wheel from artifact
223+ - name : 🔧 Install wheel from artifact (Ubuntu/macOS)
224+ if : ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
224225 run : |
225- ls -l install
226226 python -m pip install --disable-pip-version-check -U install/*.whl
227227
228+ - name : 🔧 Install wheel from artifact (Windows)
229+ if : ( matrix.system == 'windows' || matrix.system == 'windows-arm' )
230+ run : |
231+ python -m pip install -v --disable-pip-version-check (Get-Item .\install\*.whl).FullName
232+
228233 - name : ✅ Run application tests (Ubuntu/macOS)
229234 if : ( matrix.system != 'windows' && matrix.system != 'windows-arm' )
230235 run : |
You can’t perform that action at this time.
0 commit comments