utility routine to copy dense tensors #523
This file contains hidden or 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
| name: Run clang-format Linter | |
| on: | |
| push: | |
| paths-ignore: | |
| - docs | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: DoozyX/clang-format-lint-action@v0.14 | |
| with: | |
| source: 'src tests' | |
| extensions: 'hpp,cpp,h,c' | |
| clangFormatVersion: 14 | |
| inplace: True | |
| - uses: EndBug/add-and-commit@v4 | |
| with: | |
| author_name: TAMM developers | |
| author_email: exachem23@gmail.com | |
| message: 'Committing clang-format changes' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |