Skip to content

Commit 07a5b70

Browse files
authored
Merge pull request #2 from andrewginns/add-actions-and-cleanup
2 parents 1648928 + ade2bfa commit 07a5b70

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

.github/workflows/lint.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: PR Open/Sync - Lint
2+
on:
3+
pull_request:
4+
types: [opened, synchronize]
5+
branches:
6+
- main
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: '3.13'
16+
- run: pip install uv
17+
- run: uv sync
18+
- run: make lint

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
install:
22
uv sync
3-
npm install -g @mermaid-js/mermaid-cli
3+
npm install -g @mermaid-js/mermaid-cli
4+
5+
lint:
6+
uv run ruff check .

agents_mcp_usage/multi_mcp/multi_mcp_use/adk_mcp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
os.environ["GOOGLE_API_KEY"] = os.getenv("GEMINI_API_KEY", "")
2020

2121
# Configure logging if LOGFIRE_TOKEN is set
22-
logfire.configure(send_to_logfire="if-token-present", service_name="adk-basic-mcp")
22+
logfire.configure(send_to_logfire="if-token-present", service_name="adk-multi-mcp")
2323
logfire.instrument_mcp()
2424

2525

0 commit comments

Comments
 (0)