2020-02-10 10:47:36 +01:00
|
|
|
name: luacheck
|
2020-06-28 19:24:06 +02:00
|
|
|
on: [push, pull_request]
|
2020-02-10 10:47:36 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-01-05 17:46:44 +11:00
|
|
|
- uses: actions/checkout@master
|
2020-02-10 10:47:36 +01: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 ./
|