From a3c7b17e711e82abdb1d41564fbac2a08d41ce75 Mon Sep 17 00:00:00 2001 From: Alex Barcelo Date: Tue, 31 Oct 2017 13:52:57 +0100 Subject: [PATCH] adding Travis checks for JSON files (through jq) (#197) --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 117b3f5..be766f9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,9 +9,11 @@ addons: - debian-sid # Grab shellcheck from the Debian repo (o_O) packages: - shellcheck + - jq script: - bash -c 'shopt -s globstar; shellcheck **/*.sh' + - bash -c 'shopt -s globstar ; jq . **/*.json' matrix: fast_finish: true