nvim/.github/workflows/luacheck.yaml
Jeremie Fraeys 6c762c436a
Some checks failed
Luacheck / luacheck (push) Failing after 4s
StyLua / stylua (push) Failing after 2s
fix: endx typo in lsp-servers.lua
2026-02-08 15:08:04 -05:00

20 lines
359 B
YAML

---
# Lint Lua code
name: Luacheck
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
luacheck:
runs-on: self-hosted
container:
image: alpine:latest
steps:
- uses: actions/checkout@v4
- run: apk add --no-cache lua5.1 luarocks5.1 git
- run: luarocks-5.1 install luacheck
- run: luacheck .