.travis.yml (672B)
1 langauge: c 2 sudo: false 3 env: 4 global: 5 - RACKET_DIR=~/racket 6 matrix: 7 - RACKET_VERSION=6.6 8 - RACKET_VERSION=6.7 9 - RACKET_VERSION=HEAD 10 11 matrix: 12 fast_finish: true 13 14 before_install: 15 - git clone https://github.com/greghendershott/travis-racket.git ../travis-racket 16 - cat ../travis-racket/install-racket.sh | bash 17 - export PATH="${RACKET_DIR}/bin:${PATH}" 18 19 install: 20 - git clone https://github.com/florence/cover ../cover 21 - raco pkg install --deps search-auto ../cover/ 22 - raco pkg install --deps search-auto $TRAVIS_BUILD_DIR 23 24 script: 25 - raco test $TRAVIS_BUILD_DIR # run tests. you wrote tests, right? 26 27 after_success: 28 - raco cover -f codecov .