forked from IndrajeetPatil/ggstatsplot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
83 lines (73 loc) · 1.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# documentation at https://docs.travis-ci.com/user/languages/r
language: r
r:
- release
- devel
sudo: true
dist: trusty
cache: packages
warnings_are_errors: true
repos:
CRAN: https://cloud.r-project.org
ropensci: http://packages.ropensci.org
env:
global:
- R_MAX_NUM_DLLS=999
- _R_CHECK_FORCE_SUGGESTS_=true
- _R_CHECK_CRAN_INCOMING_=true
#r_check_args: "--run-dontrun"
r_binary_packages:
- stringi
- magrittr
- curl
- jsonlite
- Rcpp
- RcppEigen
- openssl
- utf8
- gss
- haven
- minqa
- mvtnorm
- nloptr
- SparseM
- httpuv
- markdown
- sem
- readxl
- openxlsx
- pander
- lme4
- psych
- git2r
- data.table
- rjags
r_packages:
- rlang
- bindrcpp
- purrr
- tidyr
- dplyr
- readr
- ggthemes
- jcolors
- oompaBase
- palr
- coin
- jmv
- sjstats
- WRS2
- scico
- viridisLite
r_github_packages:
- jimhester/lintr
- r-lib/covr
notifications:
email:
on_success: change
on_failure: change
after_success:
- Rscript -e 'covr::codecov()'
- Rscript -e 'covr::coveralls()'
- R CMD INSTALL $PKG_TARBALL
- Rscript -e 'lintr::lint_package()'