1
1
mirror of https://github.com/angristan/wireguard-install.git synced 2024-12-03 02:18:19 +00:00
wireguard-install/.github/main.workflow

10 lines
176 B
Plaintext
Raw Normal View History

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