-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
55 lines (46 loc) · 869 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
52
53
54
55
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
language: R
cache: packages
env:
global:
- GITHUB_REPO: antaldaniel/eurobarometer
r_build_args: --no-build-vignettes --no-manual --no-resave-data
r_check_args: --no-build-vignettes --no-manual
r_packages:
- backports
- vctrs
- rlang
- devtools
- dplyr
- tidyr
- magrittr
- purrr
- tibble
- ggplot2
- tidyselect
- stringr
- lubridate
- jsonlite
- knitr
- roxygen2
- rvest
- testthat
- usethis
- rmarkdown
- knitr
- kableExtra
- sjlabelled
- haven
- rprojroot
r_github_packages:
- jimhester/covr
- antaldaniel/retroharmonize
warnings_are_errors: false
latex: false
before_install:
- pip install --user codecov
notifications:
email:
after_success:
- R -q -e 'covr::codecov(quiet = FALSE)'