aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..e35fba889
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,8 @@
+language: python
+python: 2.7
+sudo: false
+script:
+# won't fail, but print problems
+- find . -name "*.json" -exec echo {} \; -exec python -mjson.tool {} /dev/null \; 2>&1 |grep --before 1 "Expecting" | cat
+# will fail, if linting fails
+- find . -name "*.json" -print0 | xargs -I file -n1 -0 python -mjson.tool file /dev/null