dotfiles/.travis.yml

18 lines
346 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
2018-07-10 13:19:13 +02:00
before_install:
- sudo apt-get -qq update
- sudo apt-get install 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