1
0
mirror of https://github.com/tommytran732/Arch-Setup-Script synced 2024-11-08 11:51:33 -05:00

Add shellcheck

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-05-31 10:27:25 -07:00
parent eeeb6f0f03
commit ef4f92cb7b
Signed by: Tomster
GPG Key ID: 555C902A34EC968F

27
.github/workflows/shellcheck.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: ShellCheck
on:
workflow_dispatch:
push:
branches:
- master
- main
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
pull_request:
paths-ignore:
- '**.gitignore'
- '**.md'
- 'LICENSE'
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