File tree 5 files changed +25
-2
lines changed
5 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,12 @@ jobs:
42
42
43
43
- name : Upload coverage to CodeCov
44
44
if : ${{ steps.test.outputs.coverage-report-files != '' }}
45
- uses : codecov/codecov-action@v2
45
+ uses : codecov/codecov-action@v3
46
46
with :
47
47
files : ${{ steps.test.outputs.coverage-report-files }}
48
48
fail_ci_if_error : false
49
49
verbose : true
50
+ flags : differential
50
51
51
52
clang-tidy-differential :
52
53
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 41
41
42
42
- name : Upload coverage to CodeCov
43
43
if : ${{ steps.test.outputs.coverage-report-files != '' }}
44
- uses : codecov/codecov-action@v2
44
+ uses : codecov/codecov-action@v3
45
45
with :
46
46
files : ${{ steps.test.outputs.coverage-report-files }}
47
47
fail_ci_if_error : false
48
48
verbose : true
49
+ flags : total
Original file line number Diff line number Diff line change
1
+ # See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for all rules.
1
2
default : true
2
3
MD013 : false
3
4
MD024 :
4
5
siblings_only : true
5
6
MD033 : false
6
7
MD041 : false
7
8
MD046 : false
9
+ MD049 : false
Original file line number Diff line number Diff line change 1
1
printWidth : 100
2
2
tabWidth : 2
3
+ overrides :
4
+ - files : package.xml
5
+ options :
6
+ printWidth : 1000
7
+ xmlSelfClosingSpace : false
8
+ xmlWhitespaceSensitivity : ignore
9
+
10
+ - files : " *.launch.xml"
11
+ options :
12
+ printWidth : 200
13
+ xmlSelfClosingSpace : false
14
+ xmlWhitespaceSensitivity : ignore
15
+
16
+ - files : " *.xacro"
17
+ options :
18
+ printWidth : 200
19
+ xmlSelfClosingSpace : false
20
+ xmlWhitespaceSensitivity : ignore
Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ filter=-whitespace/parens # we allow closing parenthesis to be on the ne
11
11
filter =-whitespace/semicolon # we allow the developer to decide about whitespace after a semicolon
12
12
filter =-build/header_guard # we automatically fix the names of header guards using pre-commit
13
13
filter =-build/include_order # we use the custom include order
14
+ filter =-build/include_subdir # we allow the style of "foo.hpp"
You can’t perform that action at this time.
0 commit comments