fix type comparison warnings #439
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
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/[email protected] | |
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: [email protected] | |
message: 'Committing clang-format changes' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |