1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-09-19 13:44:43 -04:00
Linux-Setup-Scripts/.github/workflows/shellcheck.yml
Tommy f8819622ec
Add shellcheck
Signed-off-by: Tommy <contact@tommytran.io>
2024-05-31 10:29:25 -07:00

27 lines
485 B
YAML

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