.travis.yml 276 B

1234567891011121314
  1. language: generic
  2. sudo: false
  3. addons:
  4. apt:
  5. packages:
  6. - luarocks
  7. before_install:
  8. - luarocks install --local luacheck && luarocks install --local busted
  9. script:
  10. - $HOME/.luarocks/bin/luacheck --no-color .
  11. - $HOME/.luarocks/bin/busted .
  12. notifications:
  13. email: false