Skip to content

Commit d6ce50d

Browse files
committed
Add CI workflow for linting Lua code
1 parent 7c3a39b commit d6ce50d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/luacheck.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Luacheck
2+
3+
on: [ push, pull_request ]
4+
5+
jobs:
6+
7+
luacheck:
8+
runs-on: ubuntu-22.04
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Luacheck
13+
uses: lunarmodules/luacheck@v1

0 commit comments

Comments
 (0)