Skip to content

Update README.md

Update README.md #2

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