mirror of
https://github.com/tommytran732/QubesOS-Scripts
synced 2024-11-09 04:11:32 -05:00
Add ShellCheck
Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
parent
4be3e3bac9
commit
601720ee45
37
.github/workflows/shellcheck.yml
vendored
Normal file
37
.github/workflows/shellcheck.yml
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
name: ShellCheck
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- main
|
||||||
|
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: Bash syntax checker
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: Run ShellCheck
|
||||||
|
uses: ludeeus/action-shellcheck@master
|
Loading…
Reference in New Issue
Block a user