1
1
mirror of https://github.com/angristan/wireguard-install.git synced 2025-01-27 08:08:25 +00:00
wireguard-install/.github/main.workflow

10 lines
186 B
Plaintext
Raw Normal View History

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