add travis continuous testing

This commit is contained in:
Ryan Mulligan 2018-03-21 21:33:48 -07:00
parent 0af8879980
commit c65889a01a

17
.travis.yml Normal file
View File

@ -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,bash}'
matrix:
fast_finish: true