2021-10-09 18:30:11 +11:00
|
|
|
name: luacheck
|
2020-11-04 10:17:45 -06:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-01-10 00:13:38 -06:00
|
|
|
- uses: actions/checkout@main
|
2020-11-04 10:17:45 -06:00
|
|
|
- name: apt
|
|
|
|
run: sudo apt-get install -y luarocks
|
|
|
|
- name: luacheck install
|
|
|
|
run: luarocks install --local luacheck
|
|
|
|
- name: luacheck run
|
|
|
|
run: $HOME/.luarocks/bin/luacheck ./
|