dotfiles/.travis.yml

21 lines
390 B
YAML
Raw Normal View History

2017-09-10 14:38:59 +02:00
language: bash
2017-06-12 01:30:46 +02:00
2017-09-10 14:38:59 +02:00
# 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
2017-06-12 01:30:46 +02:00
script:
2017-09-10 14:46:58 +02:00
- bash -c 'shopt -s globstar; shellcheck **/bash*'
- bash -c 'shopt -s globstar; shellcheck **/*.sh'
2017-09-10 14:38:59 +02:00
matrix:
fast_finish: true
2017-06-12 01:30:46 +02:00
notifications:
email: false