Browse Source

split shellcheck

pull/3141/head
neil 4 years ago
parent
commit
d25b2890be
  1. 2
      .github/workflows/LetsEncrypt.yml
  2. 7
      .github/workflows/shellcheck.yml

2
.github/workflows/LetsEncrypt.yml

@ -73,7 +73,7 @@ jobs:
Le_HTTPPort: 8888
steps:
- name: Set git to use LF
run: |
run: |
git config --global core.autocrlf false
- uses: actions/checkout@v2
- name: Install cygwin base packages with chocolatey

7
.github/workflows/shellcheck.yml

@ -12,7 +12,7 @@ on:
- '**.sh'
jobs:
formatCheck:
ShellCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -20,6 +20,11 @@ jobs:
run: sudo apt-get install -y shellcheck
- name: DoShellcheck
run: shellcheck -V && shellcheck -e SC2181 **/*.sh && echo "shellcheck OK"
shfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install shfmt
run: curl -sSL https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64 -o ~/shfmt && chmod +x ~/shfmt
- name: shfmt

Loading…
Cancel
Save