This isn't a bug, but I just wanted to post this here in case anyone else is looking.
It took me a while to find a way to install on Travis CI, but thanks to this got it working like this:
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
Thanks!
Thanks, I put this in a wiki page!
@koalaman I think would be worth noting this in the Install section of the README, even.
@dasilvacontin Send a PR?
Most helpful comment
Thanks, I put this in a wiki page!