mirror of
https://github.com/koalaman/shellcheck
synced 2025-08-20 21:33:50 -07:00
Add TravisCI Setup to README.md
This commit is contained in:
parent
edb01fa855
commit
6259a32601
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
@ -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.
|
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.
|
||||||
|
|
||||||
|
## TravisCI Setup
|
||||||
|
|
||||||
|
If you want to use ShellCheck in TravisCI, setting it up is simple :tada:.
|
||||||
|
|
||||||
|
```yml
|
||||||
|
language: bash
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
sources:
|
||||||
|
- debian-sid # Grab shellcheck from the Debian repo
|
||||||
|
packages:
|
||||||
|
- shellcheck
|
||||||
|
```
|
||||||
|
|
||||||
## Installing
|
## Installing
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue