wireguard-install/.github/main.workflow

10 lines
183 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-24 01:26:35 +03:00
args = "wireguard-install.sh -e SC1091 SC2034"
2019-05-11 12:15:04 +03:00
}