diff --git a/.travis.yml b/.travis.yml index 2ee2213..988d4e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,5 +3,19 @@ language: R sudo: false cache: packages -after_success: - - Rscript -e 'covr::coveralls()' +latex: false + +matrix: + include: + - r: devel + - r: release + after_success: Rscript -e 'covr::coveralls()' + before_deploy: Rscript -e 'remotes::install_cran("pkgdown")' + deploy: + provider: script + script: Rscript -e 'pkgdown::deploy_site_github()' + skip_cleanup: true + - r: oldrel + - r: 3.3 + - r: 3.2 + - r: 3.1 diff --git a/DESCRIPTION b/DESCRIPTION index 7c0c496..645f58a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -5,7 +5,8 @@ Authors@R: person(given = "Mauro", family = "Lepore", role = c("aut", "cre"), - email = "maurolepore@gmail.com") + email = "maurolepore@gmail.com", + comment = c(ORCID = "0000-0002-1986-7988")) Description: The goal of tor (to-R) is to help you to import multiple files from a single directory at once, and to do so as quickly, flexibly, and simply as possible. diff --git a/travis.yml b/travis.yml new file mode 100644 index 0000000..469611d --- /dev/null +++ b/travis.yml @@ -0,0 +1,19 @@ +# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r + +language: R +sudo: false +cache: packages + +matrix: + include: + - r: devel + - r: release + after_success: Rscript -e 'covr::coveralls()' + before_deploy: Rscript -e 'remotes::install_cran("pkgdown")' + deploy: + provider: script + script: Rscript -e 'pkgdown::deploy_site_github()' + skip_cleanup: true + - r: oldrel + - r: 3.3 + - r: 3.2