Skip to content

Commit

Permalink
travis: use matrix with compatible versions
Browse files Browse the repository at this point in the history
  • Loading branch information
valpackett committed Feb 10, 2018
1 parent 5112cec commit 0e13d73
Showing 1 changed file with 22 additions and 12 deletions.
34 changes: 22 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@ dist: trusty
sudo: false

language: elixir
elixir:
- 1.3.4
- 1.4.5
- 1.5.3
- 1.6.1
otp_release:
- 18.3
- 19.2
- 20.2

before_script:
- mix local.hex --force
- mix deps.get --only test
matrix:
include:
- elixir: 1.3.4
otp_release: 18.3
- elixir: 1.3.4
otp_release: 19.2
- elixir: 1.4.5
otp_release: 18.3
- elixir: 1.4.5
otp_release: 19.2
- elixir: 1.4.5
otp_release: 20.2
- elixir: 1.5.3
otp_release: 18.3
- elixir: 1.5.3
otp_release: 19.2
- elixir: 1.5.3
otp_release: 20.2
- elixir: 1.6.1
otp_release: 19.2
- elixir: 1.6.1
otp_release: 20.2

0 comments on commit 0e13d73

Please sign in to comment.