Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: CppCheck Lint

on: # yamllint disable-line rule:truthy
Expand All @@ -21,19 +20,15 @@ jobs:

- name: Install tools
run: |
sudo snap install cppcheck
sudo apt-get -y install \
--no-install-recommends \
--no-install-suggests \
cppcheck

- name: Check Tools
run: |
make --version
cmake --version
vcpkg --version
cppcheck --version

- name: Install dependencies
run: |
make dependencies

- name: Lint
run: |
export VCPKG_ROOT=/usr/local/share/vcpkg
Expand Down
Loading