Files
mk64/.github/workflows/clang-format-suggest.yml
T
coco875 f4f57d6755 Update format (#693)
* remove useless yaml file

* update format

---------

Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
2024-10-22 12:47:45 -06:00

20 lines
567 B
YAML

name: clang-format Suggest
on: [pull_request]
jobs:
formatting-check:
runs-on: ubuntu-24.04
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Install Dependance
run: |
sudo apt install clang-format make
- name: Run clang-format style check for C/C++/Protobuf programs.
run: |
clang-format --version
python tools/format.py
- uses: parkerbxyz/suggest-changes@v1
with:
comment: 'Please commit the suggested changes from clang-format.'