Fix for issue #1615 #2716
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: Stylua check | |
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| jobs: | |
| stylua: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Stylua check | |
| uses: JohnnyMorganz/[email protected] | |
| with: | |
| # token is needed because the action allegedly downloads binary from github releases | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| # CLI arguments | |
| args: --check . | |
| version: 0.20.0 |