(cs *iostreams.ColorScheme, a Annotation)
| 257 | } |
| 258 | |
| 259 | func AnnotationSymbol(cs *iostreams.ColorScheme, a Annotation) string { |
| 260 | switch a.Level { |
| 261 | case AnnotationFailure: |
| 262 | return cs.FailureIcon() |
| 263 | case AnnotationWarning: |
| 264 | return cs.WarningIcon() |
| 265 | default: |
| 266 | return "-" |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | type CheckRun struct { |
| 271 | ID int64 |
no test coverage detected