Skip to content

Commit 9574eb6

Browse files
committed
Fix YAML indentation for MCP preflight step
1 parent d4835c5 commit 9574eb6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/claude-nl-suite.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,17 @@ jobs:
397397
timeout 1 bash -lc "exec 3<>/dev/tcp/127.0.0.1/$port" && echo "TCP OK"
398398
fi
399399
400-
# (removed) Revert helper and baseline snapshot are no longer used
400+
- name: Preflight MCP server
401+
run: |
402+
set -euxo pipefail
403+
export PYTHONUNBUFFERED=1
404+
export MCP_LOG_LEVEL=debug
405+
export UNITY_PROJECT_ROOT="$GITHUB_WORKSPACE/TestProjects/UnityMCPTests"
406+
export UNITY_MCP_STATUS_DIR="$HOME/.unity-mcp"
407+
export UNITY_MCP_HOST=127.0.0.1
408+
uv run --active --directory Server python server.py --help \
409+
> /tmp/mcp-preflight.log 2>&1 || { cat /tmp/mcp-preflight.log; exit 1; }
410+
cat /tmp/mcp-preflight.log
401411
402412
# ---------- Run suite in two passes ----------
403413
- name: Run Claude NL pass

0 commit comments

Comments
 (0)