MCPcopy Create free account
hub / github.com/github/gh-aw / stepsToString

Function stepsToString

pkg/workflow/runtime_setup_test.go:511–519  ·  view source on GitHub ↗
(steps []GitHubActionStep)

Source from the content-addressed store, hash-verified

509}
510
511func stepsToString(steps []GitHubActionStep) string {
512 var result strings.Builder
513 for _, step := range steps {
514 for _, line := range step {
515 result.WriteString(line + "\n")
516 }
517 }
518 return result.String()
519}
520
521func TestRuntimeFilteringWithExistingSetupActions(t *testing.T) {
522 // Test that runtimes are detected even when setup actions already exist

Callers 1

Calls 1

StringMethod · 0.45

Tested by

no test coverage detected