aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-26 16:33:03 +0200
committerAdam <adammegarules1@gmail.com>2026-07-26 16:33:03 +0200
commita46558e0aab30eb88ac3cafac8d490174bd4785f (patch)
tree863492751dcf5afb5196bbc7a457d8f7e735ede0 /.github/workflows
parent809063825a9b0cc1edd01816ec78de55b0d7683e (diff)
making everything more strict + fixing the warnings/error
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cmake-single-platform.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml
index c02bed4..844556e 100644
--- a/.github/workflows/cmake-single-platform.yml
+++ b/.github/workflows/cmake-single-platform.yml
@@ -31,10 +31,13 @@ jobs:
env:
CC: gcc-14
CXX: g++-14
- run: cmake -B build -S .
+ run: cmake -B build -S . -DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Build
env:
CC: gcc-14
CXX: g++-14
run: cmake --build build
+
+ - name: Run clang-tidy
+ run: clang-tidy src/*.cpp -p build