Returns build status from Travis CI and Appveyor, and code coverage from codecov.
get_status_travis(repo_name, user_name = NULL) get_status_appveyor(repo_name, user_name = NULL) get_code_coverage(repo_name, user_name = NULL)
repo_name | Name of the package. |
---|---|
user_name | GitHub user or organization name. |
# get travis ci build status get_status_travis("dplyr", "tidyverse")#> [1] "Failure"# get appveyor build status get_status_appveyor("dplyr", "tidyverse")#> [1] "cancelled"# get codecov code coverage get_code_coverage("dplyr", "tidyverse")#> [1] "83.94805"