-
Notifications
You must be signed in to change notification settings - Fork 35
38 lines (28 loc) · 1 KB
/
luacheck.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Static Analysis
on:
push:
pull_request:
branches: [master]
jobs:
luacheck:
runs-on: ubuntu-latest
steps:
# LuaRocks needs the 5.1 headers to compile LuaCheck later, so we download them, too
- name: Install LuaJIT
run: sudo apt-get install luajit libluajit-5.1-dev
- name: Download LuaRocks
run: wget https://luarocks.org/releases/luarocks-3.7.0.tar.gz
- name: Unpack LuaRocks release
run: tar zxpf luarocks-3.7.0.tar.gz
- name: Install LuaRocks
run: cd luarocks-3.7.0 && ./configure && make && sudo make install
- name: Install LuaCheck
run: sudo luarocks install luacheck
# We don't want LuaCheck to analyze LuaRocks itself
# Ironically, it fails when doing that, but that's not useful here
- name: Change to temporary directory
run: mkdir temp && cd temp
- name: Check out Git repository
uses: actions/checkout@v4
- name: Perform static analysis
run: luacheck .