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 814857e commit da5706aCopy full SHA for da5706a
1 file changed
.github/workflows/cppcheck.yml
@@ -12,27 +12,23 @@ on: # yamllint disable-line rule:truthy
12
jobs:
13
lint:
14
name: CppCheck Lint
15
- runs-on: ubuntu-24.04
+ runs-on: ubuntu-26.04
16
17
steps:
18
- name: Checkout repository
19
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
20
21
- name: Install tools
22
run: |
23
- sudo snap install cppcheck --edge
+ sudo apt-get -y install \
24
+ --no-install-recommends \
25
+ --no-install-suggests \
26
+ cppcheck
27
28
- name: Check Tools
29
- make --version
- cmake --version
- vcpkg --version
30
cppcheck --version
31
32
- - name: Install dependencies
33
- run: |
34
- make dependencies
35
-
36
- name: Lint
37
38
export VCPKG_ROOT=/usr/local/share/vcpkg
0 commit comments