aboutsummaryrefslogtreecommitdiff
path: root/.github/main.workflow
blob: a46a26dfd4f3bfdf02b542e4a81699d630b1373c (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 -e SC2034"
}