www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 8d38cd588607f6c1ef48ba895962b3685ead7ad9
parent 6181ade24da5eccf000237413cb4c558a60e4119
Author: Jack Firth <jack.firth@mindjet.com>
Date:   Fri, 20 Mar 2015 20:25:12 -0700

Add travis config

Diffstat:
A.travis.yml | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -0,0 +1,18 @@ +langauge: c +sudo: false +env: + global: + - RACKET_DIR=~/racket + matrix: + - RACKET_VERSION=6.1.1 + +before_install: + - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket + - cat ../travis-racket/install-racket.sh | bash + - export PATH="${RACKET_DIR}/bin:${PATH}" + +install: raco pkg install --deps search-auto $TRAVIS_BUILD_DIR # install dependencies + +script: + - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right? + - raco cover -f coveralls -d $TRAVIS_BUILD_DIR/coverage . # generate coverage information for coveralls