mirror of
https://github.com/ludeeus/action-shellcheck.git
synced 2025-01-19 01:52:00 +01:00
16 lines
287 B
Plaintext
16 lines
287 B
Plaintext
|
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"
|
||
|
}
|