fix: Revert CI workflows to use --extra dev instead of --group dev
The mcp_server/pyproject.toml uses [project.optional-dependencies] not [dependency-groups], so CI workflows must use 'uv sync --extra dev' not 'uv sync --group dev'
This commit is contained in:
parent
5060a3ba3f
commit
0d74931366
2 changed files with 2 additions and 2 deletions
2
.github/workflows/mcp-server-lint.yml
vendored
2
.github/workflows/mcp-server-lint.yml
vendored
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
- name: Install MCP server dependencies
|
||||
run: |
|
||||
cd mcp_server
|
||||
uv sync --group dev
|
||||
uv sync --extra dev
|
||||
|
||||
- name: Add ruff to dependencies
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/mcp-server-tests.yml
vendored
2
.github/workflows/mcp-server-tests.yml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
- name: Install MCP server dependencies
|
||||
run: |
|
||||
cd mcp_server
|
||||
uv sync --group dev
|
||||
uv sync --extra dev
|
||||
|
||||
- name: Run configuration tests
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue