From 9d6f5377f8c508b5634b39be306d916e0debc1b3 Mon Sep 17 00:00:00 2001 From: Justin Leitgeb Date: Thu, 2 Jan 2014 17:42:04 -0500 Subject: [PATCH] Add basic Travis CI configuration I added a basic Travis CI configuration to make the build status more transparent. I added a small logo to the bottom of the README with the status and a link to the build. @evancz after merging this you'd have to go to https://travis-ci.org and enable the build for this project, just takes a couple of clicks. See http://about.travis-ci.org/docs/user/getting-started/. I tested this on my own github account and the configuration worked (ie, it showed the same build errors on Travis that I'm experiencing locally). --- .travis.yml | 3 +++ README.md | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5f9abb7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,3 @@ +language: haskell +ghc: + - 7.6 diff --git a/README.md b/README.md index ffdb75c..6a0f44e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ Learn about the Elm programming language at [elm-lang.org](http://elm-lang.org/). - ## Install **Note for OS X 10.9 Maverics:** you must follow @@ -49,3 +48,5 @@ Check it out [on Hackage](http://hackage.haskell.org/package/Elm) if you are int If you are stuck, email [the list](https://groups.google.com/forum/?fromgroups#!forum/elm-discuss) or ask a question in the [#Elm IRC channel](http://webchat.freenode.net/?channels=elm). + +[![Build Status](https://travis-ci.org/evancz/Elm.png)](https://travis-ci.org/evancz/Elm)