-
Notifications
You must be signed in to change notification settings - Fork 1.8k
TravisCI
Federico Brigante edited this page May 11, 2017
·
22 revisions
contributor hugovk says:
It took me a while to find a way to install on Travis CI, but thanks to this I got it working:
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
contributor ccztux says:
This is how you can implement shellcheck on Travis CI using the latest docker image:
sudo: required
language: bash
services:
- docker
before_install:
- docker pull koalaman/shellcheck
script:
- docker run -v $(pwd):/scripts koalaman/shellcheck /scripts/yourscript.sh
matrix:
fast_finish: true