10 lines
199 B
HCL
10 lines
199 B
HCL
workflow "Trigger: Push" {
|
|
on = "push"
|
|
resolves = ["Black Code Formatter"]
|
|
}
|
|
|
|
action "Black Code Formatter" {
|
|
uses = "lgeiger/black-action@master"
|
|
args = "$GITHUB_WORKSPACE --check --diff"
|
|
}
|