forked from wilsoncai1992/adaptest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
52 lines (41 loc) · 824 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
42
43
44
45
46
47
48
49
50
51
branches:
only:
- master
env:
global:
- RGL_USE_NULL=TRUE
language: r
sudo: required
cache: packages
warnings_are_errors: true
r_build_args: '--no-manual'
r_check_args: '--no-build-vignettes --no-manual'
r:
- bioc-release
- bioc-devel
before_install:
- Rscript -e 'update.packages(ask = FALSE)'
r_packages:
- devtools
- covr
- BiocManager
r_github_packages:
- r-lib/devtools@2d012d1
- r-lib/sessioninfo
- jimhester/covr
- tlverse/origami
bioc_packages:
- S4Vectors
- BiocStyle
- BiocCheck
- BiocParallel
- SummarizedExperiment
- airway
## coverage
after_success:
- Rscript -e "covr::codecov(line_exclusions = list('R/utils.R', 'R/get_summary.R', 'R/data.R', 'R/bioadaptest.R'))"
- R CMD BiocCheck .
notifications:
email:
on_success: change
on_failure: change