Skip to content

Commit

Permalink
Merge pull request #70 from anavarre/shellcheck
Browse files Browse the repository at this point in the history
Add Shellcheck support via GitHub Actions
  • Loading branch information
dhh committed Jun 10, 2024
2 parents de7e5b4 + 102cb1a commit 2e3c429
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run ShellCheck

on:
push:
branches:
- '*' # Run on all branches
pull_request:
branches:
- '*' # Run on all branches

jobs:
shellcheck:
name: Run ShellCheck
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install ShellCheck
run: sudo apt-get install -y shellcheck

- name: Run ShellCheck
run: |
# Find all shell scripts and run shellcheck
find . -name "*.sh" -print0 | xargs -0 shellcheck

0 comments on commit 2e3c429

Please sign in to comment.