Skip to content

Add analyzer cmake target and Github CI job #2

Add analyzer cmake target and Github CI job

Add analyzer cmake target and Github CI job #2

Workflow file for this run

name: Lint
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Dependencies
run: sudo apt-get install -y cmake clang-tools ninja-build
- name: Configure
run: cmake -B build -S . -GNinja
- name: Analyze
run: cmake --build build --target analyze-check