2020-10-10 16:55:06 +03:00
|
|
|
on: [push, pull_request, pull_request_target]
|
2020-04-28 16:04:16 +03:00
|
|
|
|
|
|
|
name: Lint
|
2020-07-18 22:31:03 +03:00
|
|
|
|
2020-04-28 16:04:16 +03:00
|
|
|
jobs:
|
|
|
|
shellcheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-08-03 18:47:22 +03:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: shellcheck
|
2021-04-01 15:12:24 +03:00
|
|
|
uses: ludeeus/action-shellcheck@1.1.0
|
2020-08-03 18:47:22 +03:00
|
|
|
env:
|
|
|
|
SHELLCHECK_OPTS: -e SC1091,SC1117,SC2001,SC2034
|
2020-07-18 22:31:03 +03:00
|
|
|
|
2020-04-28 16:04:16 +03:00
|
|
|
shfmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-08-03 18:47:22 +03:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: shfmt
|
|
|
|
uses: bltavares/actions/shfmt@master
|
|
|
|
env:
|
|
|
|
SHFMT_ARGS: -d
|