Merge pull request #202 from codepuncher/2026-03-02 #421
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
| # yamllint disable-line rule:document-start | |
| name: Lint | |
| # yamllint disable-line rule:truthy | |
| on: push | |
| jobs: | |
| shell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Run Shellcheck | |
| uses: azohra/shell-linter@latest | |
| lua: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run Stylua | |
| uses: JohnnyMorganz/stylua-action@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| version: latest | |
| # yamllint disable-line rule:line-length | |
| args: --quote-style AutoPreferSingle --indent-type Spaces --indent-width 2 --check . |