TestAddAllBlogSeriesWorkflows tests adding all v0.45.5 workflows from the blog series This comprehensive test verifies that all workflows referenced in the documentation can be added This test requires GitHub authentication
(t *testing.T)
| 150 | // This comprehensive test verifies that all workflows referenced in the documentation can be added |
| 151 | // This test requires GitHub authentication |
| 152 | func TestAddAllBlogSeriesWorkflows(t *testing.T) { |
| 153 | // Skip if GitHub authentication is not available |
| 154 | authCmd := exec.Command("gh", "auth", "status") |
| 155 | if err := authCmd.Run(); err != nil { |
| 156 | t.Skip("Skipping test: GitHub authentication not available (gh auth status failed)") |
| 157 | } |
| 158 | |
| 159 | // All v0.45.5 workflows from the blog series (58 total) |
| 160 | workflows := []string{ |
| 161 | "agent-performance-analyzer.md", |
| 162 | "audit-workflows.md", |
| 163 | "blog-auditor.md", |
| 164 | "breaking-change-checker.md", |
| 165 | "changeset.md", |
| 166 | "ci-coach.md", |
| 167 | "ci-doctor.md", |
| 168 | "cli-consistency-checker.md", |
| 169 | "code-simplifier.md", |
| 170 | "copilot-agent-analysis.md", |
| 171 | "copilot-pr-nlp-analysis.md", |
| 172 | "copilot-session-insights.md", |
| 173 | "daily-compiler-quality.md", |
| 174 | "daily-doc-updater.md", |
| 175 | "daily-file-diet.md", |
| 176 | "daily-malicious-code-scan.md", |
| 177 | "daily-multi-device-docs-tester.md", |
| 178 | "daily-news.md", |
| 179 | "daily-repo-chronicle.md", |
| 180 | "daily-secrets-analysis.md", |
| 181 | "daily-team-status.md", |
| 182 | "daily-testify-uber-super-expert.md", |
| 183 | "daily-workflow-updater.md", |
| 184 | "discussion-task-miner.md", |
| 185 | "docs-noob-tester.md", |
| 186 | "duplicate-code-detector.md", |
| 187 | "firewall.md", |
| 188 | "github-mcp-tools-report.md", |
| 189 | "glossary-maintainer.md", |
| 190 | "go-fan.md", |
| 191 | "grumpy-reviewer.md", |
| 192 | "issue-arborist.md", |
| 193 | "issue-monster.md", |
| 194 | "issue-triage-agent.md", |
| 195 | "mcp-inspector.md", |
| 196 | "mergefest.md", |
| 197 | "metrics-collector.md", |
| 198 | "org-health-report.md", |
| 199 | "plan.md", |
| 200 | "poem-bot.md", |
| 201 | "portfolio-analyst.md", |
| 202 | "prompt-clustering-analysis.md", |
| 203 | "q.md", |
| 204 | "repository-quality-improver.md", |
| 205 | "schema-consistency-checker.md", |
| 206 | "security-compliance.md", |
| 207 | "semantic-function-refactor.md", |
| 208 | "slide-deck-maintainer.md", |
| 209 | "stale-repo-identifier.md", |
nothing calls this directly
no test coverage detected