From 12696d7dbdb34e8323799f8d5d56629f4a522d6a Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Sat, 29 Sep 2018 23:25:54 +0800 Subject: [PATCH] Add .travis.yml --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4a4e458 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +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 + +# TODO: also run checkbashisms.pl (currently two instances of non-compliance) +script: + - shellcheck ghcup.sh + +matrix: + fast_finish: true