Skip to content

Commit 5dddb7d

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

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/cppcheck.yml

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

22-
- name: Install dependencies
22+
- name: Install tools
2323
run: |
2424
sudo apt-get update
2525
sudo apt-get install cppcheck
26+
27+
- name: Check Tools
28+
run: |
29+
make --version
30+
cmake --version
31+
vcpkg --version
2632
cppcheck --version
2733
34+
- name: Install dependencies
35+
run: |
36+
make dependencies
37+
2838
- name: Lint
29-
run: make test/static
39+
run: |
40+
export VCPKG_ROOT=/usr/local/share/vcpkg
41+
make test/static

0 commit comments

Comments
 (0)