Skip to content

Add new workflow

Add new workflow #1

Workflow file for this run

name: CPPLinters
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Python Setup
uses: actions/setup-python@v3
with:
python-version: 3.13
- name: Install libraries
run: make python-install-editable
- name: Install clang-tidy
run: sudo apt install clang-tidy
- name: Run clang-tidy
run: clang-tidy ./src/app/fast/ -checks=-*,clang-analyzer-*,-clang-analyzer-cplusplus*