-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (59 loc) · 1.82 KB
/
static-analysis.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Static Analysis
on:
pull_request:
paths-ignore:
- '**.md'
- 'changelog.lua'
- '.gitignore'
types: [opened, synchronize, reopened, ready_for_review]
push:
branches:
- main
paths-ignore:
- '**.md'
- 'changelog.lua'
- '.gitignore'
jobs:
luacheck:
name: Lint codebase
runs-on: ubuntu-latest
env:
CPPCHECK_VERSION: 2.10.3
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.9.1.tar.gz
- name: Unpack LuaRocks release
run: tar zxpf luarocks-3.9.1.tar.gz
- name: Install LuaRocks
run: cd luarocks-3.9.1 && ./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: Run luacheck
run: luacheck .
- name: Install selene
run: cargo install selene
- name: Run selene
run: selene .
# apt only has an ancient version, which behaves inconsistently
- name: Install cppcheck
run: |
git clone --depth 1 https://github.com/danmar/cppcheck.git
cd cppcheck
git fetch --tags
git checkout $CPPCHECK_VERSION
mkdir build
cd build
cmake ..
make -j$(nproc)
sudo make install
- name: Run cppcheck
run: deps/cppcheck.sh