name: ShellCheck on: workflow_call: jobs: linter-shell: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install ShellCheck run: sudo apt-get update && sudo apt-get install -y shellcheck - name: Run ShellCheck run: shellcheck -x $(find scripts -type f -name '*.sh' -print)