diff options
author | Damjan 9000 <damjan.9000@gmail.com> | 2023-12-02 22:27:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-02 16:27:13 -0500 |
commit | 3ca08acf0e9023b3f8b602a5db2dd00cebdcbfbc (patch) | |
tree | 72337f0843d2268b09ec50ae3eb5122b5cfadfe9 /.github | |
parent | 39ae0829acea66175721fcf48695c7df6db040b9 (diff) |
Add a github action on pull request to check lua formatting (#526)
GitHub Action used:
https://github.com/marketplace/actions/stylua
This runs `stylua --check` on a PR and it will show
success or failure. The suggested stylua changes can
be inspected when clicking on the details.
The PR can still be merged even if the check fails.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/stylua.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/workflows/stylua.yml b/.github/workflows/stylua.yml new file mode 100644 index 0000000..e189fe0 --- /dev/null +++ b/.github/workflows/stylua.yml @@ -0,0 +1,18 @@ +# Check Lua Formatting +name: Check Lua Formatting +on: pull_request + +jobs: + stylua-check: + name: Stylua Check + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Stylua Check + uses: JohnnyMorganz/stylua-action@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + version: latest + args: --check . + |