We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 614dbfa commit 06d04b7Copy full SHA for 06d04b7
.github/workflows/ci-lint.yaml
@@ -30,9 +30,13 @@ jobs:
30
key: apply-linters-${{ runner.os }}
31
max-size: 1000M
32
33
- - name: Build (Ubuntu 22.04)
+ - name: Minimal Lint Setup
34
run: |
35
- tools/ci-build.sh
+ sudo apt-get update
36
+ sudo apt-get install -y cmake g++ python3-pip clang-format
37
+ pip3 install -r requirements.txt
38
+ mkdir -p build && cd build
39
+ cmake .. -DCMAKE_LINT_ONLY=ON
40
41
- name: Run cpplint on C/C++ files.
42
run: cmake --build build --target cpplint
0 commit comments