Skip to content

Commit

Permalink
Updating CI to install deep learning
Browse files Browse the repository at this point in the history
  • Loading branch information
bruAristimunha committed Feb 13, 2023
1 parent e2a32cd commit f722e07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
if: |
(runner.os != 'Windows') &&
(steps.cached-poetry-dependencies.outputs.cache-hit != 'true')
run: poetry install --no-interaction --no-root --no-dev
run: poetry install --no-interaction --no-root --no-dev --with deeplearning

- name: Install library
run: poetry install --no-interaction --no-dev
run: poetry install --no-interaction --no-dev --with deeplearning

- name: Run tests
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
if: |
(runner.os != 'Windows') &&
(steps.cached-poetry-dependencies.outputs.cache-hit != 'true')
run: poetry install --no-interaction --no-root --no-dev
run: poetry install --no-interaction --no-root --no-dev --with deeplearning

- name: Install library
run: poetry install --no-interaction --no-dev
run: poetry install --no-interaction --no-dev --with deeplearning

- name: Run tests
run: |
Expand Down

0 comments on commit f722e07

Please sign in to comment.