mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-05 13:15:21 +00:00
18 lines
315 B
YAML
18 lines
315 B
YAML
|
name: ShellCheck
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- 'tabs/**/*.sh'
|
||
|
|
||
|
jobs:
|
||
|
shellcheck:
|
||
|
name: Shellcheck
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Run ShellCheck
|
||
|
uses: ludeeus/action-shellcheck@master
|
||
|
with:
|
||
|
scandir: 'tabs'
|
||
|
severity: error
|