From 1eb1e21857475f002a87beb297d6375beb50d21c Mon Sep 17 00:00:00 2001 From: Chris Down Date: Sat, 22 Aug 2015 19:29:54 +0100 Subject: [PATCH] Add Travis CI configuration Fixes #15. --- .travis.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ec0f110 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +language: haskell + +install: + - cabal install shellcheck + +before_script: + - export PATH=$PATH:$HOME/.cabal/bin/ + +script: + - shellcheck -s bash clipmenu clipmenud + +matrix: + fast_finish: true + +# Enable container based Travis CI infrastructure +# http://docs.travis-ci.com/user/migrating-from-legacy/ +sudo: false