Skip to content

Merge pull request #24 from dev-satoshi/add/vscode-extensions #49

Merge pull request #24 from dev-satoshi/add/vscode-extensions

Merge pull request #24 from dev-satoshi/add/vscode-extensions #49

Workflow file for this run

name: Shell Script Lint
on: [push]
jobs:
lint:
name: Lint Shell scripts with ShellCheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt install -y shellcheck
- name: Run ShellCheck
run: |
find . -type f -name '*.sh' -not -path './.github/*' -print0 \
| xargs -0 shellcheck --shell=bash