Skip to content

Workflow file for this run

name: ShellCheck
on: [push]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: |
find . -name "*.sh" -print0 | xargs -0 shellcheck