-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (41 loc) · 1.06 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#----------------------------------------------------------------
# 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
r:
# - bioc-release
- bioc-devel
# External dependencies
#addons:
# apt:
# packages:
# - gsl-bin
# - libgsl-dev
## Turn this to true before submission to CRAN/Bioconductor
warnings_are_errors: true
#r_build_args: "--no-build-vignettes"
#r_check_args: "--no-vignettes"
notifications:
email:
on_success: change
on_failure: change
## Code coverage
r_packages:
- covr
## BiocCheck
bioc_packages:
- BiocCheck
after_success:
- Rscript -e 'library("covr"); codecov()'
- R CMD BiocCheck .