forked from mskcc/facets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
39 lines (36 loc) · 866 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
#----------------------------------------------------------------
# Travis-CI configuration for R packages
#
# REFERENCES:
# * Travis CI: https://docs.travis-ci.com/user/languages/r
# * covr: https://github.com/jimhester/covr
#
# Validate your .travis.yml file at http://lint.travis-ci.org/
#----------------------------------------------------------------
language: r
sudo: false
cache: packages
warnings_are_errors: false
r_check_args: --as-cran
latex: true
matrix:
include:
- os: linux
r: oldrel
- os: linux
r: release
r_github_packages:
- jimhester/covr
after_success:
- Rscript -e 'covr::codecov(quiet=FALSE)'
env: NB='w/ covr' ## Just a label
- os: linux
r: devel
- os: osx
r: oldrel
- os: osx
r: release
notifications:
email:
on_success: change
on_failure: change