(steps []GitHubActionStep)
| 509 | } |
| 510 | |
| 511 | func 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 | |
| 521 | func TestRuntimeFilteringWithExistingSetupActions(t *testing.T) { |
| 522 | // Test that runtimes are detected even when setup actions already exist |
no test coverage detected