You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: internal/harness/zero-to-hero-ci/run.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ cd "$ROOT"
9
9
go test ./cmd/micro/cli/new -run TestZeroToOne -count=1
10
10
go test ./cmd/micro -run 'TestFirstAgentWalkthroughCLIBoundaries|TestZeroToHeroCLIBoundaries' -count=1
11
11
go test ./cmd/micro/cli/deploy -run TestDeployDryRun -count=1
12
-
go test ./internal/harness/zero-to-hero-ci -run 'TestNoSecretFirstAgentTranscript|TestNoSecretFirstAgentDebuggingSmoke|TestZeroToHeroReferenceDocs|TestYourFirstAgentTutorialSmoke' -count=1
12
+
go test ./internal/harness/zero-to-hero-ci -run 'TestNoSecretFirstAgentTranscript|TestNoSecretFirstAgentDebuggingSmoke|TestZeroToHeroReferenceDocs|TestZeroToHeroDeployDryRunCommandSmoke|TestYourFirstAgentTutorialSmoke' -count=1
13
13
14
14
# Deterministic no-secret reference scenarios. These use the real Go Micro
15
15
# runtime and mock only the LLM provider. The support example is the maintained
Copy file name to clipboardExpand all lines: internal/website/docs/guides/zero-to-hero.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ cloud credentials?"
23
23
| Run |`micro run` remains the local development entry point. |`go test ./cmd/micro -run TestZeroToHeroCLIBoundaries -count=1`|
24
24
| Chat |`micro chat` remains the interactive agent entry point. |`go test ./cmd/micro -run TestZeroToHeroCLIBoundaries -count=1`|
25
25
| Inspect |`micro inspect agent <name>`, `micro agent history <name>`, `micro inspect flow <flow>`, and `micro flow runs <flow>` remain discoverable for run history; the no-secret debugging smoke seeds durable agent history and runs the documented inspect/history commands without provider keys. |`go test ./internal/harness/zero-to-hero-ci -run TestNoSecretFirstAgentDebuggingSmoke -count=1`|
26
-
| Deploy |`micro deploy --dry-run` resolves deploy targets without touching remote infrastructure. |`go test ./cmd/micro/cli/deploy -run TestDeployDryRun -count=1`|
26
+
| Deploy |`micro deploy --dry-run prod` resolves the documented deploy target without touching remote infrastructure. |`go test ./internal/harness/zero-to-hero-ci -run TestZeroToHeroDeployDryRunCommandSmoke -count=1`|
27
27
| Smallest first agent |`examples/first-agent` runs one service-backed agent with a deterministic mock model and no provider key. |`go test ./examples/first-agent -run TestRunFirstAgent -count=1`|
28
28
| Runtime reference app |`examples/support` runs typed services, an agent using those services as tools, an event-driven flow handoff, and an approval gate with only the model mocked. | `go test ./examples/support -run 'TestRunSupportMockSmoke|TestZeroToHeroReadmeDocumentsLifecycle' -count=1` |
29
29
| Runtime harnesses | Real services, agents, durable flows, store-backed history, delegation, and A2A run with only the model mocked. |`./internal/harness/zero-to-hero-ci/run.sh` and `make provider-conformance-mock`|
@@ -84,6 +84,7 @@ go test ./cmd/micro -run TestFirstAgentWalkthroughCLIBoundaries -count=1
0 commit comments