Add GitHub actions workflow for shellcheck (#458)

* Remove Travis

* Add GitHub actions workflow for shellcheck
This commit is contained in:
Stanislas
2019-08-16 18:28:12 +02:00
committed by GitHub
父節點 b095c23496
當前提交 4fe6541a8d
共有 2 個文件被更改,包括 11 次插入4 次删除

11
.github/wrokflows/push.yml vendored Normal 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,SC2164,SC2034,SC1072,SC1073,SC1009

查看文件

@@ -1,4 +0,0 @@
language: shell
script:
- shellcheck -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009 openvpn-install.sh