Skip to content

Commit 42cbed4

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] build dependencies simplified.
1 parent 758805c commit 42cbed4

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

.github/workflows/cppcheck.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,22 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2121

22-
- name: Install dependencies
22+
- name: Install tools
23+
run: |
24+
sudo snap install cppcheck
25+
26+
- name: Check Tools
2327
run: |
24-
sudo apt-get update
25-
sudo apt-get install cppcheck
28+
make --version
29+
cmake --version
30+
vcpkg --version
2631
cppcheck --version
2732
33+
- name: Install dependencies
34+
run: |
35+
make dependencies
36+
2837
- name: Lint
29-
run: make test/static
38+
run: |
39+
export VCPKG_ROOT=/usr/local/share/vcpkg
40+
make test/static

0 commit comments

Comments
 (0)