nvim/.github/workflows/luacheck.yaml
Jeremie Fraeys 15b5362ed3
Some checks are pending
Luacheck / luacheck (push) Waiting to run
StyLua / stylua (macos-latest) (push) Waiting to run
StyLua / stylua (ubuntu-latest) (push) Waiting to run
ci: fix luacheck workflow to use working lua setup
2026-02-08 14:55:36 -05:00

21 lines
384 B
YAML

---
# Lint Lua code
name: Luacheck
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
luacheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "5.1"
- uses: leafo/gh-actions-luarocks@v4
- run: luarocks install luacheck
- run: luacheck .