Skip to content

Commit

Permalink
Create lua-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
T0biii authored Sep 4, 2024
1 parent b22cdfd commit f8c8a6a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/lua-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Lua Lint
on:
push:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read

jobs:
lua:
name: Lua
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get -y update && sudo apt-get -y install lua-check
- name: Lint Lua code
run: make lint-lua

0 comments on commit f8c8a6a

Please sign in to comment.