diff --git a/.github/workflows/lua-lint.yml b/.github/workflows/lua-lint.yml new file mode 100644 index 0000000..42ee078 --- /dev/null +++ b/.github/workflows/lua-lint.yml @@ -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