mirror of
https://github.com/kikito/middleclass.git
synced 2024-11-08 09:34:22 +00:00
28 lines
450 B
YAML
28 lines
450 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 base -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/base/bin # Add directory with all installed binaries to PATH
|
|
- luarocks install busted
|
|
|
|
script:
|
|
- busted -v
|
|
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|