forked from James-Thorson/FishData
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
45 lines (40 loc) · 1.05 KB
/
.travis.yml
File metadata and controls
45 lines (40 loc) · 1.05 KB
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
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# based on example at https://github.com/hadley/tibble/blob/master/.travis.yml
# Explanation of .Rbuildignore and other things: http://jtleek.com/protocols/travis_bioc_devel/
# Details for 'language: r' specification: https://docs.travis-ci.com/user/languages/r/
# Online check for syntax of .travis.yml (but doesn't work for R format): http://lint.travis-ci.org/
#language: c
#
#before_install:
# - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
# - chmod 755 ./travis-tool.sh
# - ./travis-tool.sh bootstrap
#install:
# - ./travis-tool.sh install_deps
#script: ./travis-tool.sh run_tests
#
#after_failure:
# - ./travis-tool.sh dump_logs
#
#notifications:
# email:
# on_success: change
# on_failure: change
#
language: r
cache: packages
r_packages:
- testthat
- httr
- curl
- plyr
- knitr
- rmarkdown
- R.rsp
- utils
- jsonlite
warnings_are_errors: false
notifications:
email:
on_success: change
on_failure: change