Skip to content

Commit

Permalink
Merge 2f9c0f1 into 9486132
Browse files Browse the repository at this point in the history
  • Loading branch information
zven21 committed Nov 7, 2019
2 parents 9486132 + 2f9c0f1 commit 76e7fb4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -23,3 +23,7 @@ erl_crash.dump
turbo_ecto-*.tar
.elixir_ls/

# dialyxir
/priv/plts/*.plt
/priv/plts/*.plt.has

6 changes: 4 additions & 2 deletions .travis.yml
@@ -1,8 +1,8 @@
language: elixir
elixir:
- '1.6.4'
- 1.8
otp_release:
- '20.3.2'
- 21.0
addons:
postgresql: '9.4'
services:
Expand All @@ -11,10 +11,12 @@ cache:
directories:
- _build
- deps
- priv/plts
env:
- MIX_ENV=test
before_script:
- mix ecto.create && mix ecto.migrate
script:
- mix test
- mix coveralls.travis
- mix dialyzer
5 changes: 4 additions & 1 deletion mix.exs
Expand Up @@ -21,6 +21,9 @@ defmodule Turbo.Ecto.MixProject do
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
]
end
Expand All @@ -41,7 +44,7 @@ defmodule Turbo.Ecto.MixProject do
{:ex_machina, "~> 2.2", only: :test},
{:excoveralls, "~> 0.10.5", only: :test},
{:credo, "~> 0.10.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev], runtime: false}
{:dialyxir, "~> 1.0.0-rc.7", only: [:dev, :test], runtime: false}
]
end

Expand Down
Empty file added priv/plts/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions priv/plts/dialyzer.plt.hash
@@ -0,0 +1 @@
�e��`Kp��i�R�+ ��

0 comments on commit 76e7fb4

Please sign in to comment.