diff options
author | Stanislas <angristan@pm.me> | 2019-08-16 18:10:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-16 18:10:28 +0200 |
commit | 7e776a67421d3397427ae1ce57c95c36fadb8e70 (patch) | |
tree | ca1130e0666fd23f94369ad7539f98de0a3d9628 /.github/workflows/push.yml | |
parent | 6fc7c44a876bfca1db513d523e588f08bebf0f5a (diff) | |
parent | 189271b4c26514a26a07ff2eddc755c6e64318ef (diff) |
Merge pull request #31 from angristan/actions-yaml
convert main.workflow to Actions V2 yml file
Diffstat (limited to '.github/workflows/push.yml')
-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 |