mirror of
https://github.com/TangentFoxy/love-release.git
synced 2025-07-28 02:52:20 +00:00
36 lines
692 B
YAML
36 lines
692 B
YAML
language: python
|
|
sudo: false
|
|
|
|
env:
|
|
- LUA="lua=5.1"
|
|
- LUA="luajit=2.0"
|
|
- LUA="luajit=2.1"
|
|
|
|
before_install:
|
|
- pip install hererocks
|
|
- hererocks lua_install -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
|
|
|
|
install:
|
|
- luarocks install luacheck
|
|
- luarocks install busted
|
|
- luarocks install luacov
|
|
- luarocks install luacov-coveralls
|
|
|
|
script:
|
|
- luacheck --std lua51+luajit src
|
|
- luacheck --std busted spec
|
|
- busted --verbose --coverage
|
|
|
|
after_success:
|
|
- luacov-coveralls --exclude $TRAVIS_BUILD_DIR/lua_install
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|