mirror of
https://github.com/TangentFoxy/argparse.git
synced 2025-07-27 18:42:20 +00:00
28 lines
464 B
YAML
28 lines
464 B
YAML
language: python
|
|
sudo: false
|
|
|
|
env:
|
|
- LUA="lua 5.1"
|
|
- LUA="lua 5.2"
|
|
- LUA="lua 5.3"
|
|
- LUA="luajit 2.0"
|
|
|
|
before_install:
|
|
- pip install hererocks
|
|
- hererocks l -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/l/bin
|
|
- luarocks install luacheck
|
|
- luarocks install dkjson --deps-mode=none
|
|
- luarocks install busted
|
|
- luarocks install luacov-coveralls
|
|
|
|
install:
|
|
- luarocks make
|
|
|
|
script:
|
|
- luacheck src spec
|
|
- busted -c
|
|
|
|
after_success:
|
|
- luacov-coveralls
|