From 28a3dfff0057f2d7fca103d2ecb1bb6ab6dad9f5 Mon Sep 17 00:00:00 2001 From: koalaman Date: Tue, 2 Feb 2016 21:07:18 -0800 Subject: [PATCH] Created TravisCI (markdown) --- TravisCI.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 TravisCI.md diff --git a/TravisCI.md b/TravisCI.md new file mode 100644 index 0000000..8415f33 --- /dev/null +++ b/TravisCI.md @@ -0,0 +1,23 @@ +contributor hugovk says: + +>It took me a while to find a way to install on Travis CI, but thanks to this I got it working: + +``` +language: bash + +# Use container-based infrastructure for quicker build start-up +sudo: false + +addons: + apt: + sources: + - debian-sid # Grab shellcheck from the Debian repo (o_O) + packages: + - shellcheck + +script: + - shellcheck *.sh + +matrix: + fast_finish: true +``` \ No newline at end of file