Skip to content

dox refresh and site update #33

dox refresh and site update

dox refresh and site update #33

Workflow file for this run

name: Static Analysis
permissions:
contents: read
on:
push:
branches:
- main
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/analyze.yml'
pull_request:
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/analyze.yml'
jobs:
cppcheck:
name: Check source code
runs-on: ubuntu-latest
env:
CC: gcc
XCHANGE: xchange
REDISX: redisx
SMAXLIB: smax-clib
steps:
- name: Check out smax-postgres
uses: actions/checkout@v6
- name: Check out xchange dependency
uses: actions/checkout@v6
with:
repository: Sigmyne/xchange
path: xchange
- name: Check out RedisX dependency
uses: actions/checkout@v6
with:
repository: Sigmyne/redisx
path: redisx
- name: Check out smax-clib dependency
uses: actions/checkout@v6
with:
repository: Sigmyne/smax-clib
path: smax-clib
- name: install package dependencies
run: sudo apt-get install -y cppcheck
- name: Run cppcheck
run: make analyze