Pop.Box/.travis.yml
Paul Liverman III 6f1dcd8c1c Squashed 'src/lib/inspect/' content from commit a384174
git-subtree-dir: src/lib/inspect
git-subtree-split: a384174649e8429cc3270a46cfacc37acaf6e042
2017-10-10 00:16:09 -07:00

37 lines
706 B
YAML

language: python
sudo: false
env:
- LUA="lua=5.1"
- LUA="lua=5.2"
- LUA="lua=5.3"
- 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 max+busted *.lua spec
- busted --verbose --coverage
after_success:
- luacov-coveralls --exclude $TRAVIS_BUILD_DIR/lua_install
branches:
except:
- gh-pages
notifications:
email:
on_success: change
on_failure: always