File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818 - run : mix deps.get
1919 - run : mix format --check-formatted
2020 - run : mix compile --warnings-as-errors
21- - run : mix credo
21+ - run : mix credo --all --strict
2222
2323 test :
2424 name : Test
5252 elixir-version : ${{matrix.elixir}}
5353
5454 - run : mix deps.get --only test
55- - run : mix test --color 2>/tmp/tests.stderr
55+ - name : Run mix test
56+ run : mix test --color 2>/tmp/tests.stderr
5657 - name : Make sure tests do not have warnings
5758 run : " ! grep -v 'warning: ' /tmp/tests.stderr"
Original file line number Diff line number Diff line change @@ -25,4 +25,3 @@ defmodule Norm.Core.AllOf do
2525 end
2626 end
2727end
28-
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ defmodule Norm.ContractTest do
9494 defmodule Reflection do
9595 use Norm
9696
97- def int ( ) , do: spec ( is_integer ( ) )
97+ def int , do: spec ( is_integer ( ) )
9898
9999 @ contract foo ( a :: int ( ) , int ( ) ) :: int ( )
100100 def foo ( a , b ) , do: a + b
You can’t perform that action at this time.
0 commit comments