20 lines
353 B
YAML
20 lines
353 B
YAML
name: ShellCheck CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, feature/* ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
severity: warning
|
|
ignore_paths: logs
|