change README #6
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
| name: Shell CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install ShellCheck | |
| run: sudo apt-get update && sudo apt-get install -y shellcheck | |
| - name: Syntax check (bash -n) | |
| run: | | |
| bash -n overlay-auto-update.sh | |
| bash -n install.sh | |
| - name: ShellCheck lint | |
| run: | | |
| shellcheck overlay-auto-update.sh | |
| shellcheck install.sh |