nvim/.github/workflows/luacheck.yaml
Jeremie Fraeys 436c150419
Some checks failed
Luacheck / luacheck (push) Failing after 2s
StyLua / stylua (push) Failing after 3s
ci: add shell: /bin/sh to avoid node dependency
2026-02-08 15:09:14 -05:00

23 lines
428 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
shell: /bin/sh
- run: luarocks-5.1 install luacheck
shell: /bin/sh
- run: luacheck .
shell: /bin/sh