We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edef856 commit bd85d84Copy full SHA for bd85d84
.travis.yml
@@ -42,6 +42,8 @@ env:
42
before_install:
43
- sudo luarocks install luacheck
44
- luacheck -q .
45
+ - '! grep -n -P ''(?<=.{80}).+'' --color `find . -name ''*.lua''` || (echo "ERROR: Found Lua source lines exceeding 80 columns." > /dev/stderr; exit 1)'
46
+ - '! grep -n -P ''\t+'' --color `find . -name ''*.lua''` || (echo "ERROR: Cannot use tabs." > /dev/stderr; exit 1)'
47
- sudo cpanm --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1)
48
49
install:
0 commit comments