updated gitea action
Some checks are pending
ShellCheck / Shell syntax checker (push) Waiting to run
Some checks are pending
ShellCheck / Shell syntax checker (push) Waiting to run
This commit is contained in:
parent
ae27fbb9f7
commit
f083132932
39
.gitea/workflows/shellcheck.yml
Normal file
39
.gitea/workflows/shellcheck.yml
Normal file
@ -0,0 +1,39 @@
|
||||
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: titanz/action-shellcheck@master
|
Loading…
x
Reference in New Issue
Block a user