diff options
author | angristan <angristan@pm.me> | 2019-08-16 17:55:40 +0200 |
---|---|---|
committer | angristan <angristan@pm.me> | 2019-08-16 18:09:24 +0200 |
commit | 189271b4c26514a26a07ff2eddc755c6e64318ef (patch) | |
tree | ca1130e0666fd23f94369ad7539f98de0a3d9628 /.github/workflows | |
parent | 6fc7c44a876bfca1db513d523e588f08bebf0f5a (diff) |
convert main.workflow to Actions V2 yml file
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/push.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..ad3d691 --- /dev/null +++ b/.github/workflows/push.yml @@ -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 |