binb/.travis.yml

31 lines
539 B
YAML
Raw Normal View History

2018-09-19 16:56:27 +02:00
# Run Travis CI for R using https://eddelbuettel.github.io/r-travis/
language: c
sudo: required
2020-06-10 04:17:48 +02:00
dist: bionic
jobs:
include:
#- name: r-3.5
# env: R_VERSION="3.5"
- name: r-4.0
env: R_VERSION="4.0"
2018-09-19 16:56:27 +02:00
before_install:
- curl -OLs https://eddelbuettel.github.io/r-travis/run.sh && chmod 0755 run.sh
- ./run.sh bootstrap
install:
- ./run.sh install_aptget r-cran-rmarkdown
script:
- ./run.sh run_tests
after_failure:
- ./run.sh dump_logs
notifications:
email:
on_success: change
on_failure: change