Merge pull request #823 from dasilvacontin/patch-1

Add TravisCI Setup to README.md
This commit is contained in:
koalaman
2017-01-15 15:57:09 -08:00
committed by GitHub

View File

@@ -56,6 +56,19 @@ While ShellCheck is mostly intended for interactive use, it can easily be added
ShellCheck makes canonical use of exit codes, and can output simple JSON, CheckStyle compatible XML, GCC compatible warnings as well as human readable text (with or without ANSI colors). See the [Integration](https://github.com/koalaman/shellcheck/wiki/Integration) wiki page for more documentation.
## Travis CI Setup
If you want to use ShellCheck in Travis CI, setting it up is simple :tada:.
```yml
language: bash
addons:
apt:
sources:
- debian-sid # Grab ShellCheck from the Debian repo
packages:
- shellcheck
```
## Installing