Skip to content

Add initialisation for non & mt, improve updating existing table entries #1095

Add initialisation for non & mt, improve updating existing table entries

Add initialisation for non & mt, improve updating existing table entries #1095

name: Static analysis
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
clang-tidy-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: "true"
- name: Install clang-tidy
run: |
sudo apt-get update -y
sudo apt-get install -y clang-tidy
- name: Build with clang-tidy
run: |
mkdir linuxbuild && cd linuxbuild
cmake -DCLANG_TIDY_ENABLED=ON ..
make all