mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
18 lines
256 B
HCL
18 lines
256 B
HCL
workflow "Checks" {
|
|
on = "push"
|
|
resolves = [
|
|
"Shell-Scripts",
|
|
"JQ",
|
|
]
|
|
}
|
|
|
|
action "Shell-Scripts" {
|
|
uses = "actions/bin/shellcheck@master"
|
|
args = "**/*.sh"
|
|
}
|
|
|
|
action "JQ" {
|
|
uses = "home-assistant/actions/jq@master"
|
|
args = "**/*.json"
|
|
}
|