Skip to content

[pre-commit.ci] pre-commit autoupdate #101

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #101

Workflow file for this run

name: ShellCheck
on: [push, pull_request]
jobs:
shellcheck:
name: Run ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Bash Syntax Check
run: find . -type f -name "*.sh" -exec bash -n {} \;
- name: Run ShellCheck
run: find . -type f -name "*.sh" -exec shellcheck --severity=warning {} +