Initial commit.

This commit is contained in:
Greg Hendershott 2013-07-02 14:12:46 -04:00
commit a84e47e80e
4 changed files with 21 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
compiled/
.DS_Store

5
README.md Normal file
View File

@ -0,0 +1,5 @@
Experimenting with using Travis for a Racket project.
Travis doesn't have built-in support for Racket. However it seems this
should be do-able, anyway, by using `before_install` to install
Racket?

8
main.rkt Normal file
View File

@ -0,0 +1,8 @@
#lang racket
(define (plus1 x)
(add1 x))
(module+ test
(require rackunit)
(check-equal? (plus1 1) 2))

6
travis.yml Normal file
View File

@ -0,0 +1,6 @@
before_install:
- sudo apt-get install -qq racket
script:
- raco make
- raco test -x .