a5bcbf0d | #---------------------------------------------------------------- # Travis-CI configuration for Bioconductor packages # # REFERENCES: # * Travis CI: https://travis-ci.org/ # * tutorial: https://docs.travis-ci.com/user/languages/r # * see also: https://blog.rstudio.org/2016/03/09/r-on-travis-ci/ # * covr: https://github.com/jimhester/covr # * Coveralls: https://coveralls.io/ # # Validate your .travis.yml file at http://lint.travis-ci.org/ #---------------------------------------------------------------- language: r cache: packages # R versions to be tested on |
dbc16ec4 | r: |
a5bcbf0d | - bioc-release - bioc-devel ## Turn this to true before submission to CRAN/Bioconductor warnings_are_errors: false |
9df78757 | # r_build_args: "--no-build-vignettes" # r_check_args: "--no-vignettes" |
a5bcbf0d | notifications: email: on_success: change on_failure: change ## Code coverage r_packages: - covr ## BiocCheck bioc_packages: - BiocCheck after_success: |
f99c928d | - Rscript -e 'library(covr); codecov()' |
a5bcbf0d | - R CMD BiocCheck . |