leiningen/.travis.yml
Michael Klishin 8243332093 Make sure .travis.yml includes language: clojure
There are two reasons for this:

 * We will soon roll out first-class support for other JVM languages and Clojure will be hosted on a different machine. Without this language: line Leiningen will still land on Ruby workers.

 * :language key will at some point in the future be mandatory.

Finally, you still can override `install:`, `script:` or anything else, so there is no reason to not have `language:` in your .travis.yml.
2012-02-08 20:22:41 +04:00

9 lines
No EOL
196 B
YAML

language: clojure
before_script: cd leiningen-core; lein deps; lein install; cd ..
script: bin/lein test
branches:
only:
- 1.x
- master
notifications:
irc: "irc.freenode.org#leiningen"