Fix indentation, yaml is mean

This commit is contained in:
Lucien Greathouse
2017-12-08 14:01:09 -08:00
parent 551f75f39c
commit dd16cadb4c

View File

@@ -1,36 +1,36 @@
matrix: matrix:
include: include:
- language: rust - language: rust
rust: rust:
- stable - stable
- beta - beta
- nightly - nightly
matrix: matrix:
allow_failures: allow_failures:
- rust: nightly - rust: nightly
cache: cargo cache: cargo
# http://kiki.to/blog/2016/02/04/talk-continuous-integration-with-lua/ # http://kiki.to/blog/2016/02/04/talk-continuous-integration-with-lua/
- language: python - language: python
env: env:
- LUA="lua=5.1" - LUA="lua=5.1"
before_install: before_install:
- pip install hererocks - pip install hererocks
- hererocks lua_install -r^ --$LUA - hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin - export PATH=$PATH:$PWD/lua_install/bin
install: install:
- luarocks install luafilesystem - luarocks install luafilesystem
- luarocks install busted - luarocks install busted
- luarocks install luacov - luarocks install luacov
- luarocks install luacov-coveralls - luarocks install luacov-coveralls
- luarocks install luacheck - luarocks install luacheck
- git submodule update --init --recursive - git submodule update --init --recursive
script: script:
- cd plugin && luacheck . - cd plugin && luacheck .
- lua -lluacov spec.lua - lua -lluacov spec.lua
after_success: after_success:
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install - luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install