15 lines
226 B
Elixir
15 lines
226 B
Elixir
defmodule MashConfig do
|
|
@behaviour Mash.Config
|
|
|
|
import Mash.Helpers
|
|
|
|
def jobs do
|
|
[
|
|
%{
|
|
name: :test,
|
|
run: mix("test")
|
|
},
|
|
%{name: :credo, run: mix("credo", ["--all"])},
|
|
]
|
|
end
|
|
end
|