summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2019-02-13 16:40:19 -0200
committerLindolfo 'Lorn' Rodrigues <lorn@lornlab.org>2019-02-13 16:59:20 -0200
commitab206a90b61f7b411dae49e0676cd64165ee10f2 (patch)
tree467b6b9d2624bf1acd3ed9a9215baf295088df9a /.travis.yml
parentbump version (diff)
Support Elixir-1.8
Also dropped support for elixir < 1.6
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml27
1 files changed, 14 insertions, 13 deletions
diff --git a/.travis.yml b/.travis.yml
index 8109625..56473e5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,22 +2,23 @@
language: elixir
elixir:
- - 1.3
- - 1.4
- - 1.5
+ - 1.6
+ - 1.7
+ - 1.8
otp_release:
- - 17.4
- - 18.3
- 19.3
- 20.0
+ - 21.0
+
+script: mix test
matrix:
- exclude:
- - elixir: 1.3
- otp_release: 20.0
-# - elixir: 1.4
-# otp_release: 17.4
-# - elixir: 1.4
-# otp_release: 18.3
+ include:
+ - elixir: '1.6.6'
+ otp_release: '19.3.6'
+
+ - elixir: '1.7.4'
+ otp_release: '20.0'
-script: mix test \ No newline at end of file
+ - elixir: '1.7.4'
+otp_release: '21.0'