mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
18 lines
321 B
YAML
18 lines
321 B
YAML
language: python
|
|
sudo: false
|
|
|
|
env:
|
|
- LUA="lua=5.2"
|
|
|
|
before_install:
|
|
- pip install hererocks
|
|
- hererocks lua_install -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/lua_install/bin
|
|
|
|
install:
|
|
- luarocks install luacheck
|
|
|
|
script:
|
|
- git diff-tree -r --no-commit-id --name-only HEAD
|
|
| grep '\.lua$'
|
|
| xargs -r luacheck |