andreped commited on
Commit
6ee8da2
1 Parent(s): 57cadba

Simplified whl install in tests CI

Browse files
Files changed (1) hide show
  1. .github/workflows/build.yml +2 -9
.github/workflows/build.yml CHANGED
@@ -54,15 +54,8 @@ jobs:
54
  name: "Python wheel"
55
 
56
  - name: Install wheel
57
- if: runner.os == 'Windows'
58
- run: |
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