mirror of
https://github.com/mpeterv/markdown.git
synced 2025-01-14 05:04:19 +00:00
24 lines
367 B
YAML
24 lines
367 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 here -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/here/bin
|
|
|
|
install:
|
|
- luarocks install luacov-coveralls
|
|
- luarocks make
|
|
|
|
script:
|
|
- lua -lluacov markdown-tests.lua
|
|
|
|
after_success:
|
|
- luacov-coveralls
|