Skip to content
koalaman edited this page Feb 3, 2016 · 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:
 - shellcheck *.sh

matrix:
  fast_finish: true

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature above to find a specific one, or see Checks.

Clone this wiki locally