switch Travis image

This commit is contained in:
Matthias Kretschmann 2017-09-10 14:38:59 +02:00
parent f093ac96ef
commit 6a5f3c8093
Signed by: m
GPG Key ID: 606EEEF3C479A91F
1 changed files with 15 additions and 9 deletions

View File

@ -1,15 +1,21 @@
language: ruby
language: bash
os:
- osx
install:
- brew update
- brew install shellcheck
# 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:
- shellcheck bash_*
- shellcheck bin/*.sh
- bash -c 'shopt -s globstar; shellcheck **/bash_*'
- bash -c 'shopt -s globstar; shellcheck **/*.{sh,bash}'
matrix:
fast_finish: true
notifications:
email: false