aboutsummaryrefslogtreecommitdiff
path: root/.github/main.workflow
blob: 7543896d13b6e78da0f4c55d7e81267f577f84af (plain) (blame)
1
2
3
4
5
6
7
8
9
workflow "ShellCheck" {
  on = "push"
  resolves = ["shellcheck"]
}

action "shellcheck" {
  uses = "actions/bin/shellcheck@master"
  args = "wireguard-install.sh -e SC1091"
}