You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
|
|
|
|
|
|
|
|
language: R
|
|
|
|
sudo: false
|
|
|
|
cache: packages
|
|
|
|
|
|
|
|
r:
|
|
|
|
- release
|
|
|
|
- devel
|
|
|
|
|
|
|
|
r_github_packages:
|
|
|
|
- r-lib/covr
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable --yes
|
|
|
|
- sudo apt-get --yes --force-yes update -qq
|
|
|
|
# units/udunits2 dependency:
|
|
|
|
- sudo apt-get install --yes libudunits2-dev
|
|
|
|
# sf dependencies:
|
|
|
|
- sudo apt-get install --yes libproj-dev libgeos-dev libgdal-dev
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- Rscript -e 'covr::codecov()'
|
|
|
|
#- Rscript -e 'lintr::lint_package()'
|