Skip to content

Commit 4e23f2d

Browse files
authored
Merge pull request #55 from urbytes21/dev_branch_3
id 1773741846
2 parents a2424e3 + 8aec136 commit 4e23f2d

26 files changed

Lines changed: 26 additions & 19 deletions

.github/workflows/cpp-build-test-coverage.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -96,21 +96,21 @@ jobs:
9696
echo "## Test Coverage Summary" >> $GITHUB_STEP_SUMMARY
9797
lcov --summary coverageFiltered.info >> $GITHUB_STEP_SUMMARY
9898
99-
# -------------------------------------------------------
100-
# Step 7: Run Clang-Tidy (experimenting , not exit)
101-
# - Modern C++ static analysis
102-
# - Enforces best practices
103-
# - Add `--warnings-as-errors=*` to exit code 1
104-
# -------------------------------------------------------
105-
- name: Run clang-tidy
106-
# run: |
107-
# echo "Running clang-tidy..."
108-
# clang-tidy \
109-
# -checks='clang-analyzer-*,modernize-*,performance-*,readability-*' \
110-
# -p build \
111-
# $(find ./src -name '*.cpp')
112-
run: |
113-
echo "Running clang-tidy using .clang-tidy options"
114-
clang-tidy \
115-
-p build \
116-
-header-filter='^src/.*' $(find src -name "*.cpp")
99+
# # -------------------------------------------------------
100+
# # Step 7: Run Clang-Tidy (experimenting , not exit)
101+
# # - Modern C++ static analysis
102+
# # - Enforces best practices
103+
# # - Add `--warnings-as-errors=*` to exit code 1
104+
# # -------------------------------------------------------
105+
# - name: Run clang-tidy
106+
# # run: |
107+
# # echo "Running clang-tidy..."
108+
# # clang-tidy \
109+
# # -checks='clang-analyzer-*,modernize-*,performance-*,readability-*' \
110+
# # -p build \
111+
# # $(find ./src -name '*.cpp')
112+
# run: |
113+
# echo "Running clang-tidy using .clang-tidy options"
114+
# clang-tidy \
115+
# -p build \
116+
# -header-filter='^src/.*' $(find src -name "*.cpp")

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ RUN \
1717
# install clang tidy
1818
apt-get install -y clang-tidy && \
1919
# install lcov
20-
apt-get install -y lcov
20+
apt-get install -y lcov && \
21+
# install gtk4
22+
apt-get install -y libgtkmm-4.0-dev
2123

2224
# Set the working directory inside the Docker image
2325
WORKDIR /cpp-lab

docs/uml/ap/ap_mvc_example.drawio.svg

Lines changed: 4 additions & 0 deletions
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)