Add travis support

This commit is contained in:
Pascal Vizeli
2017-04-30 22:28:54 +02:00
committed by GitHub
parent dcd648c678
commit 7d56a8366d

17
.travis.yaml 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'
matrix:
fast_finish: true