convert main.workflow to Actions V2 yml file

This commit is contained in:
angristan 2019-08-16 17:55:40 +02:00
parent 6fc7c44a87
commit 189271b4c2
2 changed files with 11 additions and 9 deletions

View File

@ -1,9 +0,0 @@
workflow "ShellCheck" {
on = "push"
resolves = ["shellcheck"]
}
action "shellcheck" {
uses = "actions/bin/shellcheck@master"
args = "wireguard-install.sh -e SC1091 -e SC2034"
}

11
.github/workflows/push.yml vendored Normal file
View File

@ -0,0 +1,11 @@
on: push
name: ShellCheck
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: shellcheck
uses: actions/bin/shellcheck@master
with:
args: wireguard-install.sh -e SC1091 -e SC2034