Skip to content

Supporting configuring model_configure_timeout_seconds param (#477) #3163

Supporting configuring model_configure_timeout_seconds param (#477)

Supporting configuring model_configure_timeout_seconds param (#477) #3163

Workflow file for this run

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 .