mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
97a22f5bf2
Clang-format is conflicting with several pull requests and even current code. Change it to manual use for the time being.
14 lines
347 B
YAML
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'
|