File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ # .travis.yml
2+ #
3+ # See README.md for instructions, or for more configuration options,
4+ # see the wiki:
5+ # https://github.com/craigcitro/r-travis/wiki
6+
7+ language : c
8+ branches :
9+ only :
10+ - master
11+ sudo : required
12+ before_install :
13+ - curl -OL http://raw.github.com/craigcitro/r-travis/master/scripts/travis-tool.sh
14+ - chmod 755 ./travis-tool.sh
15+ - ./travis-tool.sh bootstrap
16+ install :
17+ - mkdir ~/.R
18+ - ./travis-tool.sh install_github jimhester/covr
19+ - ./travis-tool.sh install_deps
20+ script : ./travis-tool.sh run_tests
21+
22+ after_failure :
23+ - ./travis-tool.sh dump_logs
24+
25+ notifications :
26+ email :
27+ on_success : change
28+ on_failure : change
29+
30+ after_success :
31+ - Rscript -e 'library(covr);coveralls()'
You can’t perform that action at this time.
0 commit comments