.travis.yml 321 B

12345678910111213141516171819
  1. language: python
  2. sudo: false
  3. addons:
  4. apt:
  5. packages:
  6. - luarocks
  7. cache:
  8. timeout: 1000
  9. directories:
  10. - $HOME/.luarocks
  11. before_install:
  12. - luarocks install --local luacheck
  13. - pip3 install pre-commit
  14. script:
  15. - pre-commit run --all-files
  16. - $HOME/.luarocks/bin/luacheck .
  17. notifications:
  18. email: false