From: Hugo Locurcio Date: Sun, 24 Feb 2019 18:46:14 +0000 (+0100) Subject: Enable colored Luacheck output on Travis CI X-Git-Tag: 5.1.0~45^2 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b38b5b2357229c51378586613316fe8ce5f82524;p=oweals%2Fminetest_game.git Enable colored Luacheck output on Travis CI This also removes the deprecated `sudo: false` option, as Travis CI is phasing out the container-based infrastructure. --- diff --git a/.travis.yml b/.travis.yml index 5253938a..a367215f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,11 @@ language: generic -sudo: false addons: apt: packages: - luarocks before_install: - luarocks install --local luacheck -script: -- $HOME/.luarocks/bin/luacheck --no-color ./mods +script: +- $HOME/.luarocks/bin/luacheck ./mods notifications: email: false