😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 satır
368B

  1. # installs dependencies, runs R CMD check, runs covr::codecov()
  2. tic::do_package_checks()
  3. if (tic::ci_on_travis() && tic::ci_has_env("BUILD_PKGDOWN")) {
  4. # creates pkgdown site and pushes to gh-pages branch
  5. message("Branch is: ", tic::ci_get_branch())
  6. if (tic::ci_get_branch() == "dev") {
  7. tic::do_pkgdown(deploy = TRUE)
  8. } else {
  9. tic::do_pkgdown()
  10. }
  11. }