2020-04-27 13:21:32 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
2020-04-27 13:01:15 +00:00
|
|
|
name: Lint
|
2019-08-16 16:28:12 +00:00
|
|
|
jobs:
|
|
|
|
shellcheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: shellcheck
|
2019-11-11 06:37:09 +00:00
|
|
|
uses: ludeeus/action-shellcheck@0.0.1
|
2019-08-16 16:28:12 +00:00
|
|
|
with:
|
2019-08-16 16:31:46 +00:00
|
|
|
args: openvpn-install.sh -e SC1091,SC2164,SC2034,SC1072,SC1073,SC1009
|
2020-04-27 13:01:15 +00:00
|
|
|
shfmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: shfmt
|
|
|
|
uses: bltavares/actions/shfmt@master
|
|
|
|
env:
|
|
|
|
SHFMT_ARGS: -d
|