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 758805c commit 42cbed4Copy full SHA for 42cbed4
.github/workflows/cppcheck.yml
@@ -19,11 +19,22 @@ jobs:
19
- name: Checkout repository
20
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
21
22
- - name: Install dependencies
+ - name: Install tools
23
+ run: |
24
+ sudo snap install cppcheck
25
+
26
+ - name: Check Tools
27
run: |
- sudo apt-get update
- sudo apt-get install cppcheck
28
+ make --version
29
+ cmake --version
30
+ vcpkg --version
31
cppcheck --version
32
33
+ - name: Install dependencies
34
35
+ make dependencies
36
37
- name: Lint
- run: make test/static
38
39
+ export VCPKG_ROOT=/usr/local/share/vcpkg
40
+ make test/static
0 commit comments