From 7d56a8366d2e242c9a8c65d276e15f1411c6ce5e Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 30 Apr 2017 22:28:54 +0200 Subject: [PATCH] Add travis support --- .travis.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .travis.yaml diff --git a/.travis.yaml b/.travis.yaml new file mode 100644 index 0000000..117b3f5 --- /dev/null +++ b/.travis.yaml @@ -0,0 +1,17 @@ +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: + - bash -c 'shopt -s globstar; shellcheck **/*.sh' + +matrix: + fast_finish: true