Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 18 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PR Open/Sync - Lint
on:
pull_request:
types: [opened, synchronize]
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- run: pip install uv
- run: uv sync
- run: make lint
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
install:
uv sync
npm install -g @mermaid-js/mermaid-cli
npm install -g @mermaid-js/mermaid-cli

lint:
uv run ruff check .
2 changes: 1 addition & 1 deletion agents_mcp_usage/multi_mcp/multi_mcp_use/adk_mcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
os.environ["GOOGLE_API_KEY"] = os.getenv("GEMINI_API_KEY", "")

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


Expand Down