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