(value: Option<&str>)
| 4249 | } |
| 4250 | |
| 4251 | fn github_inline(value: Option<&str>) -> String { |
| 4252 | value |
| 4253 | .unwrap_or_default() |
| 4254 | .trim() |
| 4255 | .replace('\r', "") |
| 4256 | .replace('\n', " ") |
| 4257 | } |
| 4258 | |
| 4259 | fn github_footer(owner: &str, repo: &str) -> String { |
| 4260 | if let Ok(run_id) = std::env::var("GITHUB_RUN_ID") { |
no test coverage detected