Skip to content

Commit 12e59a5

Browse files
committed
Update GitHub Actions workflow to use absolute paths for agent scripts
1 parent 483992f commit 12e59a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test-extended.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ jobs:
5252
}
5353
5454
# Test basic agent functionality
55-
timeout_run python src/praisonai-agents/basic-agents.py
55+
timeout_run python ${{ github.workspace }}/src/praisonai-agents/basic-agents.py
5656
5757
# Test async functionality
58-
timeout_run python src/praisonai-agents/async_example.py
58+
timeout_run python ${{ github.workspace }}/src/praisonai-agents/async_example.py
5959
6060
# Test knowledge/RAG functionality
61-
timeout_run python src/praisonai-agents/knowledge-agents.py
61+
timeout_run python ${{ github.workspace }}/src/praisonai-agents/knowledge-agents.py
6262
6363
# Test MCP functionality
64-
timeout_run python src/praisonai-agents/mcp-basic.py
64+
timeout_run python ${{ github.workspace }}/src/praisonai-agents/mcp-basic.py
6565
6666
# Test UI functionality
67-
timeout_run python src/praisonai-agents/ui.py
67+
timeout_run python ${{ github.workspace }}/src/praisonai-agents/ui.py
6868
6969
echo "✅ Example script testing completed"
7070
continue-on-error: true

0 commit comments

Comments
 (0)