Skip to content

Commit 006ff32

Browse files
committed
fix(ci): Use --all-groups to install workspace packages
1 parent 44a92b5 commit 006ff32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
enable-cache: true
2424

2525
- name: Install dependencies
26-
run: uv sync --group dev
26+
run: uv sync --all-groups
2727

2828
- name: Run ruff linter
2929
run: uv run ruff check .
@@ -44,7 +44,7 @@ jobs:
4444
enable-cache: true
4545

4646
- name: Install dependencies
47-
run: uv sync --group dev
47+
run: uv sync --all-groups
4848

4949
- name: Run mypy
5050
run: uv run mypy packages/morphir/src packages/morphir-tools/src
@@ -65,7 +65,7 @@ jobs:
6565
enable-cache: true
6666

6767
- name: Install dependencies
68-
run: uv sync --group test
68+
run: uv sync --all-groups
6969

7070
- name: Run pytest
7171
run: uv run pytest tests/ --cov=packages/morphir/src --cov=packages/morphir-tools/src --cov-report=xml

0 commit comments

Comments
 (0)