Skip to content

Commit 5bedb07

Browse files
committed
Add extras
1 parent a96ef66 commit 5bedb07

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

project/.github/workflows/build.yaml.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
restore-keys: venv-${{ runner.os }}-${{ matrix.python-version }}-{% endraw %}
6161

6262
- name: Install dependencies
63-
#if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
63+
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
6464
run: poetry install --no-interaction --all-extras
6565
{% if use_precommit %}
6666
- name: Run pre-commit

project/.github/workflows/release.yaml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
restore-keys: venv-${{ runner.os }}-${{ matrix.python-version }}-{% endraw %}
4545

4646
- name: Install dependencies
47-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
48-
run: poetry install --no-interaction
47+
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
48+
run: poetry install --no-interaction --all-extras
4949

5050
- name: Dynamic versioning
5151
run: poetry self add "poetry-dynamic-versioning[plugin]"

project/.github/workflows/{% if include_docs %}docs.yaml{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
restore-keys: venv-Linux-{{ python_version }}-
5353

5454
- name: Install dependencies
55-
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
56-
run: poetry install --no-interaction
55+
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
56+
run: poetry install --no-interaction --all-extras
5757

5858
- name: Build dependencies
5959
run: poetry build

0 commit comments

Comments
 (0)