-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23690d5
commit 955730a
Showing
18 changed files
with
731 additions
and
507 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
BasedOnStyle: Google | ||
AlignAfterOpenBracket: 'AlwaysBreak' | ||
AllowAllConstructorInitializersOnNextLine: 'false' | ||
AllowAllParametersOfDeclarationOnNextLine: 'false' | ||
AlignConsecutiveMacros: 'true' | ||
AllowShortCaseLabelsOnASingleLine: 'true' | ||
AllowShortFunctionsOnASingleLine: 'None' | ||
AllowShortIfStatementsOnASingleLine: 'Never' | ||
AllowShortLoopsOnASingleLine: 'false' | ||
BreakBeforeBraces: Allman | ||
BinPackArguments: 'false' | ||
BinPackParameters: 'false' | ||
Cpp11BracedListStyle: 'false' | ||
ColumnLimit: 125 | ||
IndentWidth: 2 | ||
IndentPPDirectives: BeforeHash | ||
NamespaceIndentation: All | ||
PackConstructorInitializers: 'Never' | ||
SpaceAfterTemplateKeyword: 'false' | ||
SpaceBeforeCtorInitializerColon: 'true' | ||
SpaceBeforeInheritanceColon: 'true' | ||
SpaceBeforeParens: ControlStatements | ||
SpaceBeforeRangeBasedForLoopColon: 'true' | ||
SpaceInEmptyBlock: true | ||
Standard: 'Latest' | ||
IncludeBlocks: Regroup | ||
IncludeCategories: | ||
# TUV-X project headers | ||
- Regex: '<(tuvx)\/' | ||
Priority: 2 | ||
# CUDA headers (in progress) | ||
- Regex: '<(cuda)[[:alnum:].(-|_)*]+>' | ||
Priority: 3 | ||
# External libraries headers | ||
- Regex: '<[[:alnum:].(-|_)*]+\/' | ||
Priority: 4 | ||
# System headers | ||
- Regex: '<[[:alnum:].(-|_)*]+>' | ||
Priority: 5 | ||
# Main, local, private headers | ||
- Regex: '".*' | ||
Priority: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: Clang-Format | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
format: | ||
name: Run Clang-Format | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Install Clang-Format | ||
run: sudo apt-get update && sudo apt-get install clang-format && clang-format --version | ||
|
||
- name: Check out code, run clang format, push changes | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Run clang-format | ||
run: | | ||
find include -type f \( -name '*.hpp' -or -name '*.h' \) -exec clang-format -i --style=file --verbose {} + | ||
find src -type f \( -name '*.cpp' -or -name '*.c' \) -exec clang-format -i --style=file --verbose {} + | ||
- name: Check for changes | ||
id: check-changes | ||
run: git diff --exit-code | ||
continue-on-error: true | ||
|
||
- name: Commit and push changes | ||
# a failue of this step means changes were detected | ||
if: steps.check-changes.outcome != 'success' | ||
run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git commit -am "Auto-format code using Clang-Format" || echo "No changes to commit" | ||
- name: Push changes to main-formatting branch | ||
if: steps.check-changes.outcome != 'success' | ||
run: git push origin HEAD:main-formatting | ||
|
||
- name: Create Pull Request | ||
if: steps.check-changes.outcome != 'success' | ||
uses: peter-evans/create-pull-request@v6 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit-message: "Auto-format code using Clang-Format" | ||
title: "Auto-format code changes" | ||
body: "This is an automated pull request to apply code formatting using Clang-Format." | ||
branch: main-formatting |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.