Versions in this module Expand all Collapse all v1 v1.5.0 Apr 2, 2026 v1.2.0 Mar 19, 2026 v0 v0.1.0 Apr 6, 2026 Changes in this version + type BuildIssue struct + Code string + Column int + File string + Line int + Message string + Severity LintSeverity + type BuildResult struct + Duration float64 + Errors int + Issues []BuildIssue + RawOutput string + Status BuildStatus + Tool string + Warnings int + func (r *BuildResult) IsSuccess() bool + type BuildStatus string + const BuildFailed + const BuildSuccess + const BuildWarning + type DepInfo struct + Direct bool + Latest string + Name string + Outdated bool + Version string + type DepResult struct + Deps []DepInfo + Direct int + Outdated int + Tool string + Total int + Transitive int + type LintIssue struct + Column int + EndCol int + EndLine int + File string + Fix string + Line int + Message string + Rule string + Severity LintSeverity + type LintResult struct + Duration float64 + Errors int + Fixable int + Infos int + Issues []LintIssue + RawOutput string + Tool string + Total int + Warnings int + func (r *LintResult) IsClean() bool + func (r *LintResult) Summary() string + type LintSeverity string + const LintError + const LintHint + const LintInfo + const LintWarning + type TestCase struct + Duration float64 + File string + Line int + Message string + Name string + Package string + Status TestStatus + type TestResult struct + Cases []TestCase + Duration float64 + Errors int + Failed int + Passed int + RawOutput string + Skipped int + Tool string + Total int + func (r *TestResult) IsSuccess() bool + func (r *TestResult) Summary() string + type TestStatus string + const TestError + const TestFail + const TestFlaky + const TestPanic + const TestPass + const TestSkip