Skip to content

Commit

Permalink
Travis: add support for Elixir 1.7 and OTP 21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
safwank committed Oct 20, 2018
1 parent 0f4028f commit 74a79d9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
elixir 1.6.5
elixir 1.7.3
erlang 21.1
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ language: elixir
elixir:
- 1.5
- 1.6
- 1.7
otp_release:
- 19.2
- 20.3
- 21.1
script:
- "mix"
13 changes: 7 additions & 6 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,23 @@ defmodule Retry.Mixfile do
[
app: :retry,
name: "retry",
description: "Simple Elixir macros for linear retry, exponential backoff and wait with composable delays.",
description:
"Simple Elixir macros for linear retry, exponential backoff and wait with composable delays.",
version: "0.11.0",
elixir: "~> 1.5",
source_url: "https://github.com/safwank/ElixirRetry",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
"credo": :test,
credo: :test,
"coveralls.html": :test,
"commit": :test
commit: :test
],
aliases: [
"commit": ["credo --strict", "coveralls.html --trace"]
commit: ["credo --strict", "coveralls.html --trace"]
],
default_task: "commit"
]
Expand Down

0 comments on commit 74a79d9

Please sign in to comment.