This repository was archived by the owner on Nov 28, 2025. It is now read-only.
docs(readme): announce deprecation #74
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: Linting and style checking | |
| on: [push, pull_request] | |
| jobs: | |
| luacheck: | |
| name: Luacheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Prepare | |
| run: | | |
| sudo apt-get update | |
| sudo add-apt-repository universe | |
| sudo apt install luarocks -y | |
| sudo luarocks install luacheck | |
| - name: Run Luacheck | |
| run: bash scripts/style-check.sh | |
| stylua: | |
| name: StyLua | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Lint with stylua | |
| uses: JohnnyMorganz/stylua-action@v2 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --check . |