blob: f6932355de2c7d328aee6109e84b8fb0520578da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
workflow "ShellCheck" {
on = "push"
resolves = ["shellcheck"]
}
action "shellcheck" {
uses = "actions/bin/shellcheck@master"
args = "wireguard-install.sh -e SC1091 SC2034"
}
|