.travis.yml 322 B

1234567891011121314151617
  1. dist: bionic
  2. language: python
  3. python:
  4. - 3.7.1
  5. install:
  6. - sudo apt-get update -qq
  7. - sudo apt-get install -qqq luarocks
  8. - pip3 install pre-commit
  9. - luarocks install --local luacheck
  10. script:
  11. # All linters are run with pre-commit hooks
  12. - export PATH="$HOME/.luarocks/bin:$PATH"
  13. - pre-commit run --all-files