mirror of
https://github.com/valitydev/yamerl.git
synced 2024-11-06 02:45:23 +00:00
db0793aa22
References #15.
25 lines
377 B
YAML
25 lines
377 B
YAML
# vim:sw=2:et:
|
|
|
|
language: erlang
|
|
otp_release:
|
|
- '19.1'
|
|
- '18.3'
|
|
- '17.5'
|
|
- 'R16B03-1'
|
|
|
|
install:
|
|
- curl -O -L https://s3.amazonaws.com/rebar3/rebar3
|
|
- chmod +x rebar3
|
|
- ./rebar3 update
|
|
|
|
script:
|
|
- ./rebar3 eunit
|
|
- ./rebar3 dialyzer
|
|
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- jean-sebastien.pedron@dumbbell.fr
|
|
on_success: change
|
|
on_failure: always
|