Descent3/.github/workflows/clang-format-check.yml
Jeod 97a22f5bf2
Use clang-format with manual trigger only
Clang-format is conflicting with several pull requests and even current code. Change it to manual use for the time being.
2024-04-17 15:37:50 -04:00

14 lines
347 B
YAML

name: clang-format Check
on: workflow_dispatch
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/clang-format-action@v4.11.0
with:
clang-format-version: '17'