From 1cde8126ea2629c948e5c97a92634f79d00d4e81 Mon Sep 17 00:00:00 2001 From: sidPhoenix17 Date: Fri, 6 Mar 2026 13:29:45 -0800 Subject: [PATCH 1/2] Add empty line in README to test CI Co-Authored-By: Claude Opus 4.6 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 181a333..7a45807 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ Infrastructure context builder for Claude Code and coding agents. + Connect your production tools (Grafana, Datadog, Kubernetes, CloudWatch, databases, etc.), extract metadata, and generate structured `.md` files that give coding agents instant context about your infrastructure.

From 64e8f337a55dd59166bce63598f26d5176b501a5 Mon Sep 17 00:00:00 2001 From: sidPhoenix17 Date: Fri, 6 Mar 2026 13:31:42 -0800 Subject: [PATCH 2/2] Restrict CI to Python 3.12 only Co-Authored-By: Claude Opus 4.6 --- .github/workflows/tests.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61cc9f6..4fef639 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,24 +9,16 @@ on: jobs: test: runs-on: ubuntu-latest - strategy: - matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] - steps: - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: ${{ matrix.python-version }} + python-version: "3.12" - name: Install dependencies run: pip install -e ".[dev]" - - name: Run tests - run: pytest tests/ -v --tb=short - - name: Run tests with coverage - if: matrix.python-version == '3.12' - run: pytest tests/ --cov=droidctx --cov-report=term-missing + run: pytest tests/ -v --tb=short --cov=droidctx --cov-report=term-missing