Skip to content

Commit

Permalink
Create shellcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bakerboy448 authored and zakkarry committed Jul 23, 2024
1 parent 28afbb3 commit bd537bf
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ShellCheck

on: [push, pull_request]

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 . -type f -name "*.sh" -exec shellcheck {} +

0 comments on commit bd537bf

Please sign in to comment.