From 38f9d512b4c3c1490a28566bd840c082ccb4fa30 Mon Sep 17 00:00:00 2001 From: Benjamin Staneck Date: Tue, 16 Apr 2019 16:33:22 +0200 Subject: [PATCH] Create .travis.yml --- .travis.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..0321f36 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: minimal + +addons: + apt: + packages: + - luarocks + +git: + depth: 100 + +install: luarocks install --local luacheck + +script: /home/travis/.luarocks/bin/luacheck . --no-color -qo "011" + +notifications: + email: + on_failure: always + on_success: never