From 4fe6541a8d55b31e47613364203c70d1bafd5158 Mon Sep 17 00:00:00 2001 From: Stanislas Date: Fri, 16 Aug 2019 18:28:12 +0200 Subject: [PATCH] Add GitHub actions workflow for shellcheck (#458) * Remove Travis * Add GitHub actions workflow for shellcheck --- .github/wrokflows/push.yml | 11 +++++++++++ .travis.yml | 4 ---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .github/wrokflows/push.yml delete mode 100644 .travis.yml diff --git a/.github/wrokflows/push.yml b/.github/wrokflows/push.yml new file mode 100644 index 0000000..ebf6ae3 --- /dev/null +++ b/.github/wrokflows/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,SC2164,SC2034,SC1072,SC1073,SC1009 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2b6c9e9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,4 +0,0 @@ -language: shell - -script: - - shellcheck -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009 openvpn-install.sh