Skip to content

Commit 9b9f269

Browse files
committed
Merge branch 'restructure-tagging' into fix-tagged-transitions
2 parents ff1af89 + 004ba66 commit 9b9f269

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/build.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,7 @@ jobs:
5252
5353
- name: "Run Unit Tests"
5454
run: "ctest --test-dir ./build"
55+
56+
- name: "Print test log on failure"
57+
if: "failure()"
58+
run: "cat ./build/Testing/Temporary/LastTest.log"

lint-tasks.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ tasks:
2626
- "src/**/*.h"
2727
- "src/**/*.hpp"
2828
- "src/**/*.tpp"
29+
- "tests/**/*.cpp"
30+
- "tests/**/*.h"
31+
- "tests/**/*.hpp"
32+
- "tests/**/*.tpp"
2933
cmds:
3034
- task: "cpp"
3135
vars:
@@ -65,6 +69,7 @@ tasks:
6569
find src examples tests \
6670
-type f \
6771
\( -iname "*.cpp" -o -iname "*.h" -o -iname "*.hpp" -o -iname "*.tpp" \) \
72+
! -path "*/*build*/*" \
6873
-print0 | \
6974
xargs -0 clang-format {{.FLAGS}} -Werror
7075

0 commit comments

Comments
 (0)