-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathci-python-googleadk-sampleagent.yml
More file actions
72 lines (59 loc) · 2.16 KB
/
ci-python-googleadk-sampleagent.yml
File metadata and controls
72 lines (59 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
name: CI - Build Python Google ADK Sample Agent
permissions:
contents: read
on:
workflow_call: # Called by orchestrator
workflow_dispatch: # Manual trigger
jobs:
validate-sample:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: ./python/google-adk/sample-agent
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12']
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display environment
run: |
python --version
pip --version
- name: Install dependencies from PyPI
run: |
python -m pip install --upgrade pip
pip install --pre -e .
- name: Display installed package versions
run: |
pip show microsoft-agents-a365-sdk microsoft-agents-core microsoft-agents-orchestration microsoft-agents-teams-channel microsoft-agents-python-channels 2>/dev/null || echo "Package version information unavailable"
shell: bash
- name: Verify dependencies installed
run: |
pip list
python -c "import aiohttp; print('OK: aiohttp')"
python -c "import fastapi; print('OK: fastapi')"
python -c "import pydantic; print('OK: pydantic')"
- name: Compile and validate Python syntax
run: |
python -m compileall -f -q . || (echo "Syntax validation failed" && exit 1)
echo "All Python files compiled successfully"
- name: Test imports
continue-on-error: true
run: |
python -c "import agent"
python -c "import mcp_tool_registration_service"
- name: Summary
if: always()
shell: bash
run: |
echo "### Google ADK Sample - Python ${{ matrix.python-version }} on ${{ matrix.os }}" >> $GITHUB_STEP_SUMMARY