mash/.mash.exs

16 lines
226 B
Elixir
Raw Normal View History

2023-08-10 08:30:20 +00:00
defmodule MashConfig do
2023-08-10 09:14:45 +00:00
@behaviour Mash.Config
2023-08-10 08:30:20 +00:00
import Mash.Helpers
def jobs do
[
%{
name: :test,
run: mix("test")
},
2023-08-10 09:14:45 +00:00
%{name: :credo, run: mix("credo", ["--all"])},
2023-08-10 08:30:20 +00:00
]
end
end