File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,13 @@ jobs:
4848 (steps.cached-poetry-dependencies.outputs.cache-hit != 'true')
4949 run : poetry install --no-interaction --no-root --with deeplearning
5050
51- - name : Install dependencies
52- if : |
53- (runner.os != 'Windows') &&
54- (steps.cached-poetry-dependencies.outputs.cache-hit != 'true')
55- run : poetry install --no-interaction --no-root --with deeplearning
51+ - name : Install library (Linux/OSX)
52+ if : ${{ runner.os != 'Windows' }}
53+ run : poetry install --no-interaction --with deeplearning
5654
57- - name : Install library
58- run : poetry install --no-interaction --with deeplearning
55+ - name : Install library (Windows)
56+ if : ${{ runner.os == 'Windows' }}
57+ run : poetry install --no-interaction
5958
6059 - name : Run tests
6160 run : |
You can’t perform that action at this time.
0 commit comments