19 lines
381 B
YAML
19 lines
381 B
YAML
language: elixir
|
|
matrix:
|
|
include:
|
|
- otp_release: 18.3
|
|
elixir: 1.4
|
|
- otp_release: 19.3
|
|
elixir: 1.4
|
|
- otp_release: 20.0
|
|
elixir: 1.4
|
|
- otp_release: 19.3
|
|
elixir: 1.5
|
|
- otp_release: 20.0
|
|
elixir: 1.5
|
|
sudo: false
|
|
after_script:
|
|
- MIX_ENV=docs mix deps.get
|
|
- MIX_ENV=docs mix inch.report
|
|
script:
|
|
- MIX_ENV=test mix coveralls.travis
|