wireguard-install/.github/main.workflow

10 lines
176 B
Plaintext
Raw Normal View History

2019-05-11 12:15:04 +03:00
workflow "ShellCheck" {
on = "push"
2019-05-12 18:20:40 +03:00
resolves = ["shellcheck"]
2019-05-11 12:15:04 +03:00
}
2019-05-12 18:20:40 +03:00
action "shellcheck" {
2019-05-12 18:20:06 +03:00
uses = "actions/bin/shellcheck@master"
2019-05-12 18:22:34 +03:00
args = "wireguard-install.sh -e SC1091"
2019-05-11 12:15:04 +03:00
}