mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
17 lines
268 B
YAML
17 lines
268 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:
|
|
- luacheck . --exclude-files lua_install
|