Add a GitHub action for luacheck (#33)

This commit is contained in:
HybridDog
2023-08-28 12:19:58 +02:00
committed by GitHub
parent cbae2c7f88
commit 31a98e2c9b

10
.github/workflows/luacheck.yml vendored Normal file
View File

@ -0,0 +1,10 @@
name: luacheck
on: [push, pull_request]
jobs:
luacheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Luacheck
uses: lunarmodules/luacheck@master