Each entry in the jobs list must, at a minimum, have two keys:
-`:name` -- the name of the job which must be a unique atom
-`:run` -- a function which defines the work for the job to do. We recommend using the helper functions from Mash.Helpers to define your run function, as they ensure that your function handles setup and teardown correctly for many common scenarios, e.g.:
-`Mash.Helpers.mix(task_name, args)` -- execute a mix task with the given `task_name` and `args`.
-`Mash.Helpers.shell(command, args)` -- run an executable/script named `command` with `args`.
- The function should return `:ok` or `{:ok, value}` if the job succeeds, or `{:error, error}` if the job fails.
- The argument passed to your function will be the PID of the IO device which is capturing IO. Since we make this PID the "group leader" for your job automatically, you can probably ignore this argument, but you may need to for interfacing with certain libraries that