From ed78e27742a7b18c76f0cc66492c43b45f175e3c Mon Sep 17 00:00:00 2001 From: "devsy-app[bot]" <277138668+devsy-app[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 12:32:48 +0000 Subject: [PATCH] ci: verify go toolchain in devcontainer runCmd Add go to the devcontainer CI runCmd verification list. --- .github/workflows/devcontainer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index c6c4d7723..9d196c399 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -16,13 +16,13 @@ on: runCmd: description: "Command to run inside the devcontainer" required: false - default: for c in task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done + default: for c in go task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done permissions: contents: read env: - DEFAULT_RUN_CMD: for c in task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done + DEFAULT_RUN_CMD: for c in go task prek uv node; do command -v "$c" >/dev/null 2>&1 || { echo "missing $c" >&2; exit 1; }; done jobs: build: