titanz be728f6ca6
Some checks failed
ShellCheck / Shell syntax checker (push) Waiting to run
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 52s
removed permissions line from yml
2025-01-12 17:43:24 +01:00

40 lines
721 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-24.04
# permissions:
# contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master