File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11language : elixir
22sudo : false
3- script : MIX_ENV=test mix quality
3+ script :
4+ - if [[ `elixir -v` = *"1.9"* ]]; mix format --check-formatted; fi
5+ - credo --strict
6+ - mix test
47matrix :
58 # Compatible versions are taken from
69 # https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ defmodule Facebook.Mixfile do
1010 elixir: "~> 1.0" ,
1111 description: description ( ) ,
1212 package: package ( ) ,
13- aliases: aliases ( ) ,
1413 deps: deps ( ) ,
1514 source_url: "https://github.com/mweibel/facebook.ex"
1615 ]
@@ -62,14 +61,4 @@ defmodule Facebook.Mixfile do
6261 { :ex_doc , ">= 0.19.2" , only: :dev }
6362 ]
6463 end
65-
66- defp aliases do
67- [
68- quality: [
69- "test" ,
70- "format --check-formatted" ,
71- "credo --strict"
72- ]
73- ]
74- end
7564end
You can’t perform that action at this time.
0 commit comments