Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions .github/workflows/unit-python-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ jobs:

- name: Install dependencies
working-directory: sdks/python
run: uv sync
# --locked fails the build if uv.lock is out of step with
# pyproject.toml. Release bumps used to edit pyproject alone,
# leaving every released package's lock a version stale (#2313,
# #2314); this is what stops that drifting again unnoticed.
run: uv sync --locked

- name: Run tests
working-directory: sdks/python
Expand Down Expand Up @@ -106,7 +110,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/langgraph/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/langgraph/python
Expand Down Expand Up @@ -147,7 +151,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/watsonx/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/watsonx/python
Expand Down Expand Up @@ -188,7 +192,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/adk-middleware/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/adk-middleware/python
Expand Down Expand Up @@ -230,7 +234,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/adk-middleware/python
run: uv sync
run: uv sync --locked

- name: Force google-adk 2.x
working-directory: integrations/adk-middleware/python
Expand Down Expand Up @@ -291,7 +295,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/aws-strands/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/aws-strands/python
Expand Down Expand Up @@ -332,7 +336,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/langroid/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/langroid/python
Expand Down Expand Up @@ -373,7 +377,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/crew-ai/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/crew-ai/python
Expand Down Expand Up @@ -417,7 +421,7 @@ jobs:

- name: Install dependencies
working-directory: integrations/claude-managed-agents/python
run: uv sync
run: uv sync --locked

- name: Run tests
working-directory: integrations/claude-managed-agents/python
Expand Down
Loading