Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ jobs:
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/clang-format-action@v4.15.0
with:
clang-format-version: '13'
clang-format-version: '20'
check-path: ${{ matrix.path }}
fallback-style: 'Google'
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ Testflo can be run by calling the following command from TACS' root directory:
testflo ./tests
```
3. Add unit/integration tests that include coverage for any features that have been added to TACS' test [library](https://github.com/smdogroup/tacs/tree/master/tests).
4. Run formatting checks on any modified C++ source/header code using [clang-format](https://clang.llvm.org/docs/ClangFormat.html).
4. Run formatting checks on any modified C++ source/header code using [clang-format](https://clang.llvm.org/docs/ClangFormat.html). We use version 20 with a Google format style.
```
clang-format --style=Google -i filename.cpp
```
5. Run formatting checks on any modified Python code using [Black](https://black.readthedocs.io/en/stable/).
5. Run formatting checks on any modified Python code using [Black](https://black.readthedocs.io/en/stable/). We use version 24.
```
python -m black filename.py
```
Expand Down
292 changes: 146 additions & 146 deletions src/TACSAssembler.h

Large diffs are not rendered by default.

Loading
Loading