From 718ef57b23c1016c2b248105ac5994807d2658e7 Mon Sep 17 00:00:00 2001 From: srvrco Date: Fri, 4 Nov 2016 16:09:46 +0000 Subject: [PATCH] Testing Travis CI --- .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..867a6d2 --- /dev/null +++ b/.travis.yml @@ -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 getssl' + +matrix: + fast_finish: true