refactor: updates for better project management #14
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 Script Linting | |
| on: | |
| push: | |
| branches: [main, booting] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Run shellcheck | |
| run: | | |
| shellcheck install.sh .devcontainer/*.sh scripts/*.sh templates/scripts/*.sh |