This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Update install.sh #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is your GitHub Actions workflow file | |
| # It will give you the "green badge" | |
| name: CI | |
| # Run this workflow on every push and pull request | |
| on: [push, pull_request] | |
| jobs: | |
| lint: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest # Use a standard Linux runner | |
| steps: | |
| # 1. Get the code from your repository | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| # 2. Install ShellCheck (a tool to find bugs in Bash scripts) | |
| - name: Install ShellCheck | |
| run: sudo apt-get update && sudo apt-get install -y shellcheck | |
| # 3. Run ShellCheck on your scripts | |
| # If this command fails, your badge will turn red (failed) | |
| # If it passes, your badge will turn green (passing) | |
| - name: Run ShellCheck | |
| run: shellcheck ip install.sh |