|
@ -12,7 +12,7 @@ jobs: |
|
|
run: shellcheck -V && shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" |
|
|
run: shellcheck -V && shellcheck -e SC2181 **/*.sh && echo "shellcheck OK" |
|
|
- name: Install shfmt |
|
|
- name: Install shfmt |
|
|
with: |
|
|
with: |
|
|
SHFMT_URL=https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64 |
|
|
|
|
|
|
|
|
SHFMT_URL: "https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64" |
|
|
run: curl -sSL ${{ SHFMT_URL }} -o ~/shfmt && chmod +x ~/shfmt |
|
|
run: curl -sSL ${{ SHFMT_URL }} -o ~/shfmt && chmod +x ~/shfmt |
|
|
- name: shfmt |
|
|
- name: shfmt |
|
|
run: ~/shfmt -l -w -i 2 . ; git diff --exit-code && echo "shfmt OK" |
|
|
run: ~/shfmt -l -w -i 2 . ; git diff --exit-code && echo "shfmt OK" |