Skip to content
This repository has been archived by the owner on Nov 13, 2021. It is now read-only.

Commit

Permalink
add travis.yml for Travis-CI support
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Oct 24, 2014
1 parent 7da50a7 commit f9fae3f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
LICENSE
.travis.yml
^.*\.Rproj$
^\.Rproj\.user$
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Sample .travis.yml for R projects.
#
# See https://github.com/craigcitro/r-travis
# https://github.com/eddelbuettel/r-travis/

language: c

env:
global:
- _R_CHECK_FORCE_SUGGESTS_=FALSE

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_r Rcpp ggplot2

script:
- ./travis-tool.sh run_tests

notifications:
email:
on_success: change
on_failure: change

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# BreakoutDetection R package

[![Build Status](https://travis-ci.org/eddelbuettel/breakoutdetection.png)](https://travis-ci.org/eddelbuettel/breakoutdetection)

BreakoutDetection is an open-source R package that makes breakout detection simple and fast. The BreakoutDetection package can be used in wide variety of contexts. For example, detecting breakout in user engagement post an A/B test, detecting [behavioral change](http://wiki.cbr.washington.edu/qerm/index.php/Behavioral_Change_Point_Analysis), or for problems in econometrics, financial engineering, political and social sciences.

## How the package works
Expand Down

0 comments on commit f9fae3f

Please sign in to comment.