yamerl/.travis.yml

30 lines
468 B
YAML
Raw Permalink Normal View History

# vim:sw=2:et:
language: erlang
otp_release:
2017-06-22 09:39:59 +00:00
- '20.0'
2017-05-13 04:38:32 +00:00
- '19.3'
- '18.3'
- '17.5'
- 'R16B03-1'
install:
- curl -O -L https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
- ./rebar3 update
script:
- ./rebar3 compile
- ./rebar3 eunit skip_deps=true
- ./rebar3 dialyzer
after_success:
- ./rebar3 coveralls send
notifications:
email:
recipients:
- jean-sebastien.pedron@dumbbell.fr
on_success: change
on_failure: always