Skip to content

Commit

Permalink
[CI] Add shellcheck --severity=error as a CI step (#2618)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbley committed Mar 28, 2024
1 parent a06fd25 commit 3adcc79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,16 @@ jobs:
- name: run markdownlint
run: markdownlint .

shellcheck:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
- name: install shellcheck
run: sudo apt install --assume-yes shellcheck
- name: run shellcheck
run: find . -name \*.sh | xargs shellcheck --severity=error

misspell:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3adcc79

Please sign in to comment.