Browse Source

Use {tic} for continous integration

pull/11/head
Philipp Baumann 4 years ago
parent
commit
2f9b0bcfee
  1. 1
      .Rbuildignore
  2. 1
      .gitignore
  3. 8
      tic.R

1
.Rbuildignore

@ -3,3 +3,4 @@
^\.travis\.yml$
LICENSE\.md
^appveyor\.yml$
^tic\.R$

1
.gitignore

@ -4,3 +4,4 @@
.Ruserdata
.DS_Store
._*
docs/

8
tic.R

@ -0,0 +1,8 @@
# installs dependencies, runs R CMD check, runs covr::codecov()
do_package_checks()
if (ci_on_travis() && ci_has_env("BUILD_PKGDOWN")) {
# creates pkgdown site and pushes to gh-pages branch
# only for the runner with the "BUILD_PKGDOWN" env var set
do_pkgdown()
}
Loading…
Cancel
Save