Skip to content

Commit

Permalink
Add ShellCheck workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oh2fih committed Dec 27, 2023
1 parent 872de50 commit 9afe3fc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ShellCheck
on:
push:
pull_request:
branches:
- main

jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck for shell scripts
uses: ludeeus/action-shellcheck@master
with:
severity: style
scandir: .
format: gcc
version: stable

0 comments on commit 9afe3fc

Please sign in to comment.