forked from stephenslab/fastTopics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
26 lines (22 loc) · 892 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
language: r
cache: packages
latex: false
warnings_are_errors: false
r_build_args:
r_check_args: --as-cran
# This is the minimal set of R packages needed to run "R CMD check" on
# the package.
install:
- R -e 'install.packages(c("devtools","covr","testthat","knitr","rmarkdown","quadprog","MCMCpack","irlba","Rtsne","dplyr","Rcpp","RcppArmadillo","RcppParallel","RcppProgress","progress","ggplot2","ggrepel","cowplot","plotly","htmlwidgets","Ternary"))'
- R -e 'devtools::install_github("linxihui/NNLM",upgrade="never",force=TRUE)'
- R -e 'devtools::install_github("slowkow/ggrepel",upgrade="never",force=TRUE)'
- R -e 'devtools::install_github("stephens999/ashr",upgrade="never",force=TRUE)'
env:
global:
- _R_CHECK_FORCE_SUGGESTS_: false
- R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
after_success:
- Rscript -e 'library(covr); codecov()'
branches:
only:
- master