Skip to content

Create shellcheck.yml #12

Create shellcheck.yml

Create shellcheck.yml #12

Workflow file for this run

name: ShellCheck Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Check Bash Script Syntax
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 (ignore warnings)
run: |
echo "Checking setup.sh syntax..."
shellcheck setup.sh || true