Skip to content

test shell linter

test shell linter #2

Workflow file for this run

name: Lint sh
on:
push:
branches: [main]
paths: ['scripts/install_plugin.sh']
pull_request:
branches: [main]
paths: ['scripts/install_plugin.sh']
jobs:
lint-sh:
name: Lint scripts/install_plugin.sh
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
continue-on-error: true
steps:
- uses: actions/checkout@v4
- uses: luizm/action-sh-checker@v0.9.0
with:
sh_checker_exclude: 'scripts/verify-* scripts/update-* scripts/release.sh'
sh_checker_checkbashisms_enable: true