12 lines
283 B
YAML
12 lines
283 B
YAML
|
name: Linting
|
||
|
run-name: ${{ gitea.actor }} is checking the LUA code 🚀
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
Luacheck:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Check out repository code
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Luacheck linter
|
||
|
uses: lunarmodules/luacheck@v1
|