2019-07-29 00:52:08 +02:00
|
|
|
dist: bionic
|
|
|
|
language: python
|
2019-02-22 01:37:49 +01:00
|
|
|
|
2019-07-29 00:52:08 +02:00
|
|
|
python:
|
|
|
|
- 3.7.1
|
2019-02-22 01:37:49 +01:00
|
|
|
|
2019-02-26 18:46:15 +01:00
|
|
|
install:
|
2019-07-29 00:52:08 +02:00
|
|
|
- sudo apt-get update -qq
|
|
|
|
- sudo apt-get install -qqq luarocks
|
|
|
|
- pip3 install pre-commit
|
2019-02-26 18:46:15 +01:00
|
|
|
- luarocks install --local luacheck
|
2019-02-22 01:37:49 +01:00
|
|
|
|
2019-02-26 18:46:15 +01:00
|
|
|
script:
|
2019-04-03 00:29:43 +02:00
|
|
|
# All linters are run with pre-commit hooks
|
|
|
|
- export PATH="$HOME/.luarocks/bin:$PATH"
|
2019-07-29 00:52:08 +02:00
|
|
|
- pre-commit run --all-files
|