Merge pull request #31 from angristan/actions-yaml

convert main.workflow to Actions V2 yml file
This commit is contained in:
Stanislas 2019-08-16 18:10:28 +02:00 committed by GitHub
commit 7e776a6742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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