Skip to content

Multi-container setup for agent -> MCP server networking #13

Multi-container setup for agent -> MCP server networking

Multi-container setup for agent -> MCP server networking #13

Workflow file for this run

name: Python code quality
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python 3
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
uv sync
- name: Lint with ruff
run: |
uv run ruff check .
- name: Check formatting with ruff
run: |
uv run ruff format . --check