titanz 5007ccef8b
Some checks failed
ShellCheck / Shell syntax checker (push) Failing after 12s
IGNORE SC3040
2025-01-14 11:15:45 +01:00

42 lines
770 B
YAML

name: ShellCheck
on:
workflow_dispatch:
push:
branches:
- master
- development
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
- '**.conf'
- '**.service'
- '**.timer'
- '**.path'
- '**.list'
pull_request:
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
- '**.conf'
- '**.service'
- '**.timer'
- '**.path'
- '**.list'
jobs:
shellcheck:
name: Shell syntax checker
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -e SC3040