| 599 | } |
| 600 | |
| 601 | record ContentCheck(String name, String description, Kind kind, boolean ok, GHContent content) |
| 602 | implements Information { |
| 603 | public String summary() { |
| 604 | // formatter:off |
| 605 | return "- %s %s - %s%s".formatted( |
| 606 | getMarker(kind, ok), name, description, urlText(content)); |
| 607 | // formatter:on |
| 608 | } |
| 609 | |
| 610 | public String markdownSummary() { |
| 611 | return "- [%s] %s %s - %s%s" |
| 612 | .formatted((ok ? "x" : " "), |
| 613 | getMarker(kind, ok), name, description, urlText(content)); |
| 614 | } |
| 615 | } |
| 616 | |
| 617 | record FileCheck(String name, Kind kind, GHContent content) |
| 618 | implements Information { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…