Supporting configuring model_configure_timeout_seconds param (#477) #3163
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: style | |
| on: [push, pull_request] | |
| jobs: | |
| clang-format: | |
| name: C/C++ Style Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: clang-format check | |
| uses: DoozyX/clang-format-lint-action@v0.20 | |
| with: | |
| source: '.' | |
| exclude: '' | |
| extensions: 'h,hpp,cc,cpp' | |
| clangFormatVersion: 19 | |
| style: file | |
| python-style: | |
| name: Python Style Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install and run black | |
| run: | | |
| sudo apt install black -y | |
| black --check . |