| 249 | func (s Steps) Swap(i, j int) { s[i], s[j] = s[j], s[i] } |
| 250 | |
| 251 | type Annotation struct { |
| 252 | JobName string |
| 253 | Message string |
| 254 | Path string |
| 255 | Level Level `json:"annotation_level"` |
| 256 | StartLine int `json:"start_line"` |
| 257 | } |
| 258 | |
| 259 | func AnnotationSymbol(cs *iostreams.ColorScheme, a Annotation) string { |
| 260 | switch a.Level { |
nothing calls this directly
no outgoing calls
no test coverage detected