We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6fcdec commit 6171c9dCopy full SHA for 6171c9d
.github/workflows/format.yml
@@ -3,6 +3,10 @@ name: Code formatting
3
on:
4
pull_request:
5
branches: [ master, develop ]
6
+ paths:
7
+ - '**.cpp'
8
+ - '**.h'
9
+ - '!src/libs/**'
10
11
jobs:
12
test-format:
tests/test-format.sh
@@ -16,6 +16,7 @@ for file in $CHANGED_FILES
16
do
17
[ -e "$file" ] || continue
18
case "$file" in
19
+ src/libs/*) continue ;;
20
*.cpp|*.h)
21
echo Checking "$file"
22
clang-format -i "$file"
0 commit comments