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