Fix client/server build issue with new grpc. #252
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: DoozyX/clang-format-lint-action@v0.13 | |
with: | |
source: '.' | |
exclude: './lib' | |
extensions: 'h,cpp,c,cu' | |
clangFormatVersion: 6 | |
inplace: True | |
- uses: EndBug/add-and-commit@v7.5.0 | |
with: | |
default_author: github_actions | |
committer_name: GitHub Actions | |
committer_email: actions@github.com | |
message: 'Committing clang-format changes' |