A parenthesis for good measure, in one of the equations of the standa… #65
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 | |
| on: [push] | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: List Contents | |
| shell: bash | |
| run: ls -lhta ${{ github.workspace }} && git -C ${{ github.workspace }} rev-parse HEAD | |
| - uses: DoozyX/clang-format-lint-action@v0.16 | |
| with: | |
| source: 'include src tests' | |
| extensions: 'hpp,cxx,hpp.in,h,c' | |
| clangFormatVersion: 15 | |
| inplace: True | |
| - uses: EndBug/add-and-commit@v4 | |
| with: | |
| author_name: Clang Robot | |
| author_email: robot@example.com | |
| message: 'Committing clang-format changes' | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} |