mirror of https://github.com/wolfSSL/wolfBoot.git
25 lines
477 B
YAML
25 lines
477 B
YAML
name: Cppcheck static analysis
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'master', 'main', 'release/**' ]
|
|
pull_request:
|
|
branches: [ '*' ]
|
|
|
|
jobs:
|
|
cppcheck:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: false
|
|
|
|
- name: install cppcheck
|
|
run: sudo apt-get install --no-install-recommends -y -q cppcheck
|
|
|
|
- name: Run cppcheck static analysis
|
|
run: |
|
|
make cppcheck
|