You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 20, 2024. It is now read-only.
# Replace pull_request with pull_request_target if you
10
+
# plan to use this action with forks, see the Limitations section
11
+
pull_request:
12
+
branches:
13
+
- main
14
+
15
+
# Down scope as necessary via https://docs.github.com/en/actions/security-guides/automatic-token-authentication#modifying-the-permissions-for-the-github_token
16
+
permissions:
17
+
checks: write
18
+
contents: write
19
+
20
+
jobs:
21
+
run-linters:
22
+
name: Run linters
23
+
runs-on: ubuntu-latest
24
+
25
+
steps:
26
+
- name: Check out Git repository
27
+
uses: actions/checkout@v2
28
+
29
+
# Install your linters here
30
+
31
+
- name: Run linters
32
+
uses: JohnnyMorganz/stylua-action@v3
33
+
with:
34
+
token: ${{ secrets.GITHUB_TOKEN }}
35
+
version: latest # NOTE: we recommend pinning to a specific version in case of formatting changes
[](https://github.com/search?q=repo%3ARyanLua%2FShime++language%3ALua&type=code)
0 commit comments