-
-
Notifications
You must be signed in to change notification settings - Fork 3
60 lines (50 loc) · 1.44 KB
/
checks.yml
File metadata and controls
60 lines (50 loc) · 1.44 KB
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
name: Magisk Module CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake clang g++ shellcheck
- name: Build C++ components
run: |
mkdir -p build
cd build
cmake ..
make
- name: ShellCheck scripts
run: |
if [ -d scripts ]; then
shellcheck scripts/*.sh
fi
- name: Lint and format C++ code
run: |
if command -v clang-format >/dev/null 2>&1; then
find src/ -name '*.cpp' -or -name '*.h' | xargs clang-format --dry-run --Werror
fi
- name: Run C++ tests (if any)
run: |
cd build
if [ -f Makefile ]; then
ctest --output-on-failure || true
fi
- name: Static analysis (optional)
run: |
if command -v clang-tidy >/dev/null 2>&1 && [ -f build/compile_commands.json ]; then
find ../src -name '*.cpp' | xargs clang-tidy -p .
fi
- name: Archive logs (if any)
if: always()
uses: actions/upload-artifact@v4
with:
name: logs
path: /data/adb/modules/task_optimizer/logs/
if-no-files-found: ignore