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

10 lines
176 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-12 17:22:34 +02:00
args = "wireguard-install.sh -e SC1091"
2019-05-11 11:15:04 +02:00
}