15 lines
317 B
YAML
15 lines
317 B
YAML
name: bash-lint
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Run Shellcheck
|
|
uses: azohra/shell-linter@latest
|
|
with:
|
|
path: "/github/workspace/*.sh"
|
|
|
|
# https://github.com/azohra/shell-linter
|