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