added broken link checker and fixed all the broken links in the docs #31
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
| # Cache: 2025-09-03 02:13:59 | |
| name: ShellCheck | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - "**.sh" | |
| - "**/scripts/**" | |
| - ".github/workflows/shellcheck.yml" | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - "**.sh" | |
| - "**/scripts/**" | |
| - ".github/workflows/shellcheck.yml" | |
| jobs: | |
| shellcheck: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install ShellCheck | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y shellcheck | |
| - name: Run ShellCheck | |
| run: ./scripts/shellcheck.sh |