-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinfer.travis.yml
61 lines (49 loc) · 989 Bytes
/
infer.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
language: r
matrix:
include:
- r: oldrel
# Don't use vdiffr on old R release
env: VDIFFR_RUN_TESTS=false
- r: release
- r: devel
warnings_are_errors: true
sudo: required
cache: packages
latex: false
env:
global:
- CRAN: http://cran.rstudio.com
# Use vdiffr by default
- VDIFFR_RUN_TESTS: true
notifications:
email:
on_success: change
on_failure: change
r_packages:
- devtools
r_github_packages:
- r-lib/callr
- r-lib/pkgbuild
- hadley/pkgdown
- tidymodels/infer
before_deploy:
- Rscript -e 'pkgdown::build_site()'
deploy:
- provider: pages
skip-cleanup: true
keep-history: true
local-dir: docs
github_token: $GITHUBTRAVIS
target-branch: gh-pages
on:
branch: master
- provider: pages
skip-cleanup: true
keep-history: true
local-dir: docs
github_token: $GITHUBTRAVIS
target-branch: gh-pages-dev
on:
branch: develop
after_success:
- Rscript -e 'covr::codecov()'