mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +00:00
19 lines
406 B
YAML
19 lines
406 B
YAML
|
name: clang-format Check
|
||
|
on:
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
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'
|