We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2a7be4 commit af5cfedCopy full SHA for af5cfed
.github/workflows/packing.yml
@@ -153,9 +153,8 @@ jobs:
153
154
- name: Install the package with pip from artifacts
155
run: |
156
- $env:WHEEL_FILE=$(where *.whl)
157
- echo $env:WHEEL_FILE
158
- pip install $env:WHEEL_FILE
+ $env:WHEEL_FILE=$(where *.whl); echo $env:WHEEL_FILE
+ $env:WHEEL_FILE=$(where *.whl); pip install $env:WHEEL_FILE
159
160
- name: Install test requirements
161
run: pip install -r requirements-test.txt
0 commit comments