bitser/.travis.yml

25 lines
491 B
YAML
Raw Normal View History

2016-02-15 13:06:25 +00:00
language: python
sudo: false
env:
- 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
install:
- luarocks install luacheck
- luarocks install busted
- luarocks install luacov
- luarocks install luacov-coveralls
script:
2016-02-15 13:12:51 +00:00
- luacheck --std max+busted bitser.lua spec
2016-02-15 13:06:25 +00:00
- busted --verbose --coverage
after_success:
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install