From 0226fa99cc1cc8a4f9a607d098f3861e5ca0688f Mon Sep 17 00:00:00 2001 From: Mike Arnold Date: Thu, 30 Aug 2018 17:29:06 -0400 Subject: [PATCH] Updated TravisCI (markdown) --- TravisCI.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/TravisCI.md b/TravisCI.md index 3150b34..e5a4e1c 100644 --- a/TravisCI.md +++ b/TravisCI.md @@ -1,6 +1,14 @@ It's recommended to first refer to the official instructions regarding using ShellCheck with Travis CI: \ https://github.com/koalaman/shellcheck#travis-ci: +For a truly simple configuration, place the following in your `.travis.yml`: +```yaml +language: shell +sudo: false +script: + - bash -c 'shopt -s globstar; shellcheck **/*.{sh,ksh,bash}' +``` + Note: >Travis CI has now integrated ShellCheck by default, so you don't need to manually install it.