Skip to content

Update cibuildwheel to 2.19.2 and ci pipeline #72

Update cibuildwheel to 2.19.2 and ci pipeline

Update cibuildwheel to 2.19.2 and ci pipeline #72

Workflow file for this run

name: clang-format Check
on:
push:
branches:
- main
pull_request:
types: [ assigned, opened, synchronize, reopened ]
jobs:
formatting-check:
name: Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/[email protected]
with:
clang-format-version: '14'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: python -m pip install --upgrade pip
- run: python -m pip install isort black
- run: python -m isort . --profile black --check-only --diff
- run: python -m black . --check --diff