Added the the get gain command (#735) #2318
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: Clang Format | |
on: [push, pull_request] | |
jobs: | |
checkout-and-check-formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run clang-format | |
uses: DoozyX/[email protected] | |
with: | |
source: 'src' | |
exclude: './third_party' | |
extensions: 'h,cpp,c' | |
clangFormatVersion: 12.0.1 | |
inplace: False |