1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
sudo: true
cache: packages
apt_packages:
- libv8-dev
before_install:
- cd tests
script:
- R -e "devtools::install()"
- R -f test.R
|