Simplified whl install in tests CI
Browse files
.github/workflows/build.yml
CHANGED
|
@@ -54,15 +54,8 @@ jobs:
|
|
| 54 |
name: "Python wheel"
|
| 55 |
|
| 56 |
- name: Install wheel
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
$TARGET = Resolve-Path "${{github.workspace}}/livermask-*.whl" | Select -ExpandProperty Path
|
| 60 |
-
echo $TARGET
|
| 61 |
-
pip install --find-links=${{github.workspace}} $TARGET
|
| 62 |
-
|
| 63 |
-
- name: Install wheel
|
| 64 |
-
if: runner.os != 'Windows'
|
| 65 |
-
run: pip install --find-links=${{github.workspace}} livermask-*.whl
|
| 66 |
|
| 67 |
- name: Test CLI
|
| 68 |
run: livermask --help
|
|
|
|
| 54 |
name: "Python wheel"
|
| 55 |
|
| 56 |
- name: Install wheel
|
| 57 |
+
run: pip install --find-links=. livermask-*.
|
| 58 |
+
shell: bash
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
|
| 60 |
- name: Test CLI
|
| 61 |
run: livermask --help
|