Skip to content

Commit

Permalink
build: dialyzer in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullathedruid committed Feb 29, 2024
1 parent ff863ee commit e0226d0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ solana_ex-*.tar
# IDE
.elixir_ls/
.elixir-tools/

# Dialyzer files
/priv/plts/*.plt
/priv/plts/*.plt.hash
5 changes: 4 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ defmodule SolanaEx.MixProject do
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
test_coverage: [tool: ExCoveralls]
test_coverage: [tool: ExCoveralls],
dialyzer: [
plt_file: {:no_warn, "priv/plts/dialyzer.plt"}
]
]
end

Expand Down

0 comments on commit e0226d0

Please sign in to comment.