Skip to content

Commit 620f604

Browse files
committed
fix: correct poetry install command in CI
Fixed poetry install command to properly handle dependency groups and extras. Changed from '--with dev,docs,api' to '--with dev,docs --extras api' since 'api' is defined as an extra, not a dependency group.
1 parent 92a27b6 commit 620f604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Install dependencies
3838
run: |
39-
poetry install --with dev,docs,api --no-interaction
39+
poetry install --with dev,docs --extras api --no-interaction
4040
4141
- name: Run linting
4242
run: |

0 commit comments

Comments
 (0)