Add GitHub Actions workflow to run shellcheck on all plugins.
Requirements
Workflow
name: Lint
on: [push, pull_request]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run shellcheck
run: |
find . -name '*.plugin.zsh' -exec shellcheck {} \;
/label ci,enhancement
/milestone v0.2
Add GitHub Actions workflow to run shellcheck on all plugins.
Requirements
Workflow
/label ci,enhancement
/milestone v0.2