The default MIX_ENV
is "dev"
, so override it as needed.
An example workflow to run mix format --check-formatted
is as follows:
workflow "Formatting" {
on = "push"
resolves = ["Check Changed Files Formatting"]
}
action "Check Changed Files Formatting" {
uses = "bglusman/check-formatted@v0.1.0"
needs = "Get Deps"
}