Skip to content

Commit 7346dcf

Browse files
committed
test again
1 parent 64fac4a commit 7346dcf

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build-and-push-tutorial-agent.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,15 @@ jobs:
120120
echo "" >> $GITHUB_STEP_SUMMARY
121121
fi
122122
123+
test-outputs:
124+
needs: find-agents
125+
runs-on: ubuntu-latest
126+
steps:
127+
- name: Test outputs
128+
run: |
129+
echo "has_agents: '${{ needs.find-agents.outputs.has_agents }}'"
130+
echo "agents: '${{ needs.find-agents.outputs.agents }}'"
131+
123132
build-agents:
124133
needs: find-agents
125134
if: ${{ needs.find-agents.outputs.has_agents == 'true' }}

examples/tutorials/00_sync/000_hello_acp/project/acp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ async def handle_message_send(
2323
# Extract content safely from the message
2424

2525
message_text = ""
26+
print(message_text, message_text)
2627
if hasattr(params.content, "content"):
2728
content_val = getattr(params.content, "content", "")
2829
if isinstance(content_val, str):

0 commit comments

Comments
 (0)