We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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