We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9983e4 commit 1aa0cdfCopy full SHA for 1aa0cdf
.github/workflows/lint.yml
@@ -13,13 +13,9 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- uses: actions/checkout@v4
16
-
17
- - name: Set up stylua
+ - name: Run stylua check
18
uses: JohnnyMorganz/stylua-action@v4
19
with:
20
token: ${{ secrets.GITHUB_TOKEN }}
21
- version: latest # Specify the stylua version
22
- # args: --check . # stylua action runs check by default
23
24
- - name: Run lint check via Makefile
25
- run: make lint # Use Makefile target
+ version: latest
+ args: --check . # Explicitly tell stylua to check the current directory
0 commit comments