Skip to content

github: add clazy to linting workflow #8

github: add clazy to linting workflow

github: add clazy to linting workflow #8

Workflow file for this run

---
name: Lint
on:
push:
branches: [main]
pull_request: {}
jobs:
codespell:
name: Codespell
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.1
- name: Codespell
uses: codespell-project/actions-codespell@v2.1
clazy:
name: Clazy
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4.2.1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install qt6-base-private-dev qt6-declarative-dev qt6-httpserver-dev qt6-websockets-dev
- name: Configure
run: |
cmake -S gpt4all-chat -B gpt4all-chat/build \
-DCMAKE_C_COMPILER=clang \
-DCMAKE_CXX_COMPILER=clang++ \
-DLLMODEL_CUDA=OFF \
-DLLMODEL_KOMPUTE=OFF
- name: Clazy
uses: MinyazevR/clazy-standalone-action@v0.2.0
with:
checks: "level0,no-container-anti-pattern,no-qstring-arg,no-qstring-ref,no-strict-iterators,no-unused-non-trivial-variable"
install-stable: true
database: gpt4all-chat/build