Skip to content

[WIP] ci: add ShellCheck workflow for shell script linting #2

[WIP] ci: add ShellCheck workflow for shell script linting

[WIP] ci: add ShellCheck workflow for shell script linting #2

Workflow file for this run

name: Shell Lint
on: [pull_request, push]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: |
find . -name '*.sh' -exec shellcheck {} +