blob: a03fe920015dfa3bf59aa396ef3ce0a08e0add1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
name: luacheck
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- 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 ./
|