Skip to content

Commit 5cb14fc

Browse files
committed
ci: add '--all-extras' parameter to uv sync for PR pipelines
1 parent 78d3442 commit 5cb14fc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Sync dependencies (locked)
2525
run: |
26-
uv sync --locked --all-groups
26+
uv sync --locked --all-groups --all-extras
2727
2828
- name: Build & install native extension (maturin develop)
2929
uses: PyO3/maturin-action@v1
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Sync dependencies (locked)
5757
run: |
58-
uv sync --locked --all-groups
58+
uv sync --locked --all-groups --all-extras
5959
6060
- name: Build & install native extension (maturin develop)
6161
uses: PyO3/maturin-action@v1

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ uv --version
4848
Create and sync the virtual environment (including dev dependencies):
4949

5050
```bash
51-
uv sync --all-groups
51+
uv sync --all-groups --all-extras
5252
```
5353

5454
This will:

0 commit comments

Comments
 (0)