1
0
mirror of https://github.com/tommytran732/MariaDB-Root-Password-Reset synced 2024-09-18 15:14:43 -04:00
MariaDB-Root-Password-Reset/.github/workflows/shellcheck.yml
Tommy dce60f9743
Add ShellCheck workflow
Signed-off-by: Tommy <contact@tommytran.io>
2024-05-31 11:04:17 -07:00

37 lines
673 B
YAML

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