Skip to content

Commit a7dc169

Browse files
committed
Merge branch 'action' [no ci]
2 parents 3a1f28c + ff4abc4 commit a7dc169

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1845
-1830
lines changed

.clang-format

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
AccessModifierOffset: -4
2-
AlignAfterOpenBracket: DontAlign
3-
AllowShortBlocksOnASingleLine: true
4-
AllowShortFunctionsOnASingleLine: All
5-
BasedOnStyle: LLVM
6-
BraceWrapping:
7-
AfterClass: false # TODO: verify
8-
AfterControlStatement: false # TODO: verify
9-
AfterEnum: false # TODO: verify
10-
AfterFunction: false # TODO: verify
11-
AfterNamespace: false # TODO: verify
12-
AfterStruct: false # TODO: verify
13-
AfterUnion: false # TODO: verify
14-
BeforeCatch: true
15-
BeforeElse: false
16-
IndentBraces: false
17-
SplitEmptyFunction: true
18-
SplitEmptyRecord: true
19-
BreakBeforeBraces: Custom
20-
ColumnLimit: 0
21-
Cpp11BracedListStyle: false
22-
FixNamespaceComments: false
23-
IndentCaseLabels: false
24-
IndentPPDirectives: None
25-
IndentWidth: 4
26-
MaxEmptyLinesToKeep: 10
27-
NamespaceIndentation: All
28-
PointerAlignment: Left
29-
SortIncludes: true
30-
SortUsingDeclarations: false
31-
SpaceAfterCStyleCast: false
32-
SpaceBeforeAssignmentOperators: true
33-
SpaceBeforeParens: ControlStatements
34-
SpaceInEmptyParentheses: false
35-
SpacesInCStyleCastParentheses: false
36-
SpacesInParentheses: false
37-
SpacesInSquareBrackets: false
38-
TabWidth: 4
39-
UseTab: false
1+
AccessModifierOffset: -4
2+
AlignAfterOpenBracket: DontAlign
3+
AllowShortBlocksOnASingleLine: true
4+
AllowShortFunctionsOnASingleLine: All
5+
BasedOnStyle: LLVM
6+
BraceWrapping:
7+
AfterClass: false # TODO: verify
8+
AfterControlStatement: false # TODO: verify
9+
AfterEnum: false # TODO: verify
10+
AfterFunction: false # TODO: verify
11+
AfterNamespace: false # TODO: verify
12+
AfterStruct: false # TODO: verify
13+
AfterUnion: false # TODO: verify
14+
BeforeCatch: true
15+
BeforeElse: false
16+
IndentBraces: false
17+
SplitEmptyFunction: true
18+
SplitEmptyRecord: true
19+
BreakBeforeBraces: Custom
20+
ColumnLimit: 0
21+
Cpp11BracedListStyle: false
22+
FixNamespaceComments: false
23+
IndentCaseLabels: false
24+
IndentPPDirectives: None
25+
IndentWidth: 4
26+
MaxEmptyLinesToKeep: 10
27+
NamespaceIndentation: All
28+
PointerAlignment: Left
29+
SortIncludes: true
30+
SortUsingDeclarations: false
31+
SpaceAfterCStyleCast: false
32+
SpaceBeforeAssignmentOperators: true
33+
SpaceBeforeParens: ControlStatements
34+
SpaceInEmptyParentheses: false
35+
SpacesInCStyleCastParentheses: false
36+
SpacesInParentheses: false
37+
SpacesInSquareBrackets: false
38+
TabWidth: 4
39+
UseTab: false

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[*]
1+
[*]
22
end_of_line = lf
33
insert_final_newline = true
44
indent_style = space

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto
2+
*.cpp text eol=lf
3+
*.h text eol=lf

.github/workflows/ccpp.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,22 @@ on:
88
branches: [main]
99

1010
jobs:
11+
duplicates:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Run Duplo Analyser
16+
uses: dlidstrom/[email protected]
17+
with:
18+
include-pattern: src
1119
bump-tag-dry:
1220
runs-on: ubuntu-latest
21+
needs: [duplicates]
1322
steps:
1423
- uses: actions/checkout@v4
1524
- name: Get next version
1625
id: tag
17-
uses: anothrNick/github-tag-action@1.67.0
26+
uses: anothrNick/github-tag-action@1.71.0
1827
env:
1928
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2029
WITH_V: true
@@ -174,7 +183,7 @@ jobs:
174183
fetch-depth: '0'
175184
- name: Bump version and push tag
176185
id: tag
177-
uses: anothrNick/github-tag-action@1.36.0
186+
uses: anothrNick/github-tag-action@1.71.0
178187
env:
179188
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
180189
WITH_V: true

0 commit comments

Comments
 (0)