From eed75942b1693d04efc86aedae3194d9920a189e Mon Sep 17 00:00:00 2001 From: Milton Mazzarri Date: Tue, 22 Jan 2019 13:13:42 -0600 Subject: [PATCH] update Travis CI configuration --- .travis.yml | 28 ++++------------------------ mix.exs | 2 +- 2 files changed, 5 insertions(+), 25 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ba48e4..45871ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,27 +1,6 @@ language: elixir -elixir: - - 1.3.4 - - 1.4.5 - - 1.5.2 -otp_release: - - 20.1 - - 19.3 - - 18.3 -matrix: - # newest/oldest pair - exclude: - - elixir: 1.5.2 - otp_release: 19.3 - - elixir: 1.5.2 - otp_release: 18.3 - - elixir: 1.4.5 - otp_release: 20.1 - - elixir: 1.4.5 - otp_release: 18.3 - - elixir: 1.3.4 - otp_release: 20.1 - - elixir: 1.3.4 - otp_release: 19.3 +elixir: 1.6.1 +otp_release: 20.3 sudo: false notifications: recipients: @@ -29,7 +8,8 @@ notifications: env: - MIX_ENV=test script: - - "mix do local.hex --force, deps.get, test" + - mix format --check-formatted + - mix test cache: directories: - deps diff --git a/mix.exs b/mix.exs index a55a5eb..ffce97d 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Hunter.Mixfile do [ app: :hunter, version: "0.5.0-dev", - elixir: "~> 1.3", + elixir: "~> 1.6", docs: docs(), package: package(), source_url: "https://github.com/milmazz/hunter",