-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
41 lines (34 loc) · 928 Bytes
/
.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
#----------------------------------------------------------------
# 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
warnings_are_errors: false
# 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 'covr::coveralls()'
- R CMD BiocCheck .