mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-01-18 17:41:58 +01:00
16 lines
287 B
HCL
16 lines
287 B
HCL
workflow "Trigger: Push" {
|
|
on = "push"
|
|
resolves = [
|
|
"Shellcheck",
|
|
"Black Code Formatter",
|
|
]
|
|
}
|
|
|
|
action "Shellcheck" {
|
|
uses = "ludeeus/action-shellcheck@master"
|
|
}
|
|
|
|
action "Black Code Formatter" {
|
|
uses = "lgeiger/black-action@master"
|
|
args = "$GITHUB_WORKSPACE --check"
|
|
} |