From 189271b4c26514a26a07ff2eddc755c6e64318ef Mon Sep 17 00:00:00 2001 From: angristan Date: Fri, 16 Aug 2019 17:55:40 +0200 Subject: [PATCH] convert main.workflow to Actions V2 yml file --- .github/main.workflow | 9 --------- .github/workflows/push.yml | 11 +++++++++++ 2 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 .github/main.workflow create mode 100644 .github/workflows/push.yml diff --git a/.github/main.workflow b/.github/main.workflow deleted file mode 100644 index a46a26d..0000000 --- a/.github/main.workflow +++ /dev/null @@ -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" -} 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