acme.sh/.github/workflows/shellcheck.yml

17 lines
582 B
YAML
Raw Normal View History

2020-08-21 10:19:26 +00:00
name: Shellcheck
2020-08-17 14:49:09 +00:00
on: [push, pull_request]
2020-08-17 14:46:52 +00:00
jobs:
formatCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Shellcheck
run: sudo apt-get install -y shellcheck
- name: DoShellcheck
run: shellcheck -V && shellcheck -e SC2181 **/*.sh && echo "shellcheck OK"
- name: Install shfmt
2020-08-17 14:52:59 +00:00
run: curl -sSL https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64 -o ~/shfmt && chmod +x ~/shfmt
2020-08-17 14:46:52 +00:00
- name: shfmt
run: ~/shfmt -l -w -i 2 . ; git diff --exit-code && echo "shfmt OK"