Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Commit

Permalink
Fix indentation settings
Browse files Browse the repository at this point in the history
  • Loading branch information
LPGhatguy committed Nov 28, 2017
1 parent 85117d6 commit 4915d2a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
root = true

[*]
[*.lua]
indent_style = tab
end_of_line = lf
charset = utf-8
Expand Down
29 changes: 15 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,28 @@ language: python
sudo: false

branches:
only:
- master
only:
- master

env:
- LUA="lua=5.1"
- LUA="lua=5.1"

before_install:
- pip install hererocks
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin
- pip install hererocks
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin
- export LUA_PATH="$LUA_PATH;;./?/init.lua"

install:
- luarocks install busted
- luarocks install luacov
- luarocks install luacov-coveralls
- luarocks install luacheck
- ./install-dependencies
- luarocks install busted
- luarocks install luacov
- luarocks install luacov-coveralls
- luarocks install luacheck
- ./install-dependencies

script:
- luacheck lib
- lua -lluacov spec.lua
- luacheck lib
- lua -lluacov spec.lua

after_success:
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install
- luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install

0 comments on commit 4915d2a

Please sign in to comment.