Skip to content

Commit 6047c8d

Browse files
sylvchevSylvain Chevallier
andauthored
build: change master test (#380)
Co-authored-by: Sylvain Chevallier <sylain.chevallier@universite-paris-saclay.fr>
1 parent 8de7c2a commit 6047c8d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)