Add some of missing type annotations and assertions
[tt.git] / .travis.yml
1 language: c
2
3 sudo: false
4
5 env:
6 global:
7 - RACKET_DIR=~/racket
8 matrix:
9 - RACKET_VERSION=6.9
10 - RACKET_VERSION=6.10
11 - RACKET_VERSION=6.11
12 - RACKET_VERSION=6.12
13 - RACKET_VERSION=7.0
14 - RACKET_VERSION=7.1
15 - RACKET_VERSION=7.2
16 - RACKET_VERSION=7.3
17 - RACKET_VERSION=7.4
18 - RACKET_VERSION=7.5
19 - RACKET_VERSION=7.6
20 - RACKET_VERSION=7.7
21 - RACKET_VERSION=7.8
22 - RACKET_VERSION=7.9
23 - RACKET_VERSION=8.0
24 - RACKET_VERSION=HEAD
25
26 matrix:
27 allow_failures:
28 - env: RACKET_VERSION=HEAD
29 fast_finish: true
30
31 install:
32 - bash <(curl https://raw.githubusercontent.com/greghendershott/travis-racket/master/install-racket.sh)
33 - export PATH="${RACKET_DIR}/bin:${PATH}"
34
35 script:
36 - make install
37 - make test
This page took 0.046659 seconds and 4 git commands to generate.