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