Skip to content

Add rockettest self test and random generate with exclude function #134

Add rockettest self test and random generate with exclude function

Add rockettest self test and random generate with exclude function #134

name: C Lint Check
# Runs on pushes to pull request
on: pull_request
jobs:
# Build job
clang-tidy-lint-check:
name: C Lint Check (clang-tidy check)
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v6
with:
submodules: 'true'
- name: Install clang-tidy 21
id: llvm-install
shell: bash
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 21
sudo apt install clang-tidy-21
- name: Run lint check
id: run-lint
shell: bash
run: make lint CLANG_TIDY=clang-tidy-21