Skip to content
This repository was archived by the owner on Apr 5, 2026. It is now read-only.

feat: --stats-allow-net CIDR for custom stats access ranges #72

feat: --stats-allow-net CIDR for custom stats access ranges

feat: --stats-allow-net CIDR for custom stats access ranges #72

name: Static Analysis
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cppcheck
run: sudo apt-get update && sudo apt-get install -y cppcheck
- name: Run cppcheck
run: make lint
codeql:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: c-cpp
- name: Build
run: |
sudo apt-get update && sudo apt-get install -y build-essential libssl-dev zlib1g-dev
make -j$(nproc)
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3