revert fix(agentic): harden TODO workspace write Co-Authored-By: Virgil <virgil@lethean.io>
16 lines
376 B
YAML
16 lines
376 B
YAML
version: "3"
|
|
|
|
tasks:
|
|
test:
|
|
cmds:
|
|
- |
|
|
bash <<'EOF'
|
|
set -euo pipefail
|
|
source ../_lib/run.sh
|
|
|
|
go build -trimpath -ldflags="-s -w" -o bin/core-agent ../../../cmd/core-agent
|
|
|
|
output="$(mktemp)"
|
|
run_capture_all 0 "$output" ./bin/core-agent status
|
|
assert_contains "workspaces" "$output"
|
|
EOF
|