Skip to content

Fix a few error code related issues, refactor some code #194

Fix a few error code related issues, refactor some code

Fix a few error code related issues, refactor some code #194

name: clang-format Fix
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
- '**.txt'
- 'docs/**'
jobs:
formatting-check:
name: Formatting Fix
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-ci')"
steps:
- uses: actions/checkout@v3
- name: Run clang-format style check for C programs.
uses: DoozyX/[email protected]
with:
source: '.'
extensions: 'c,h,cpp,hpp'
clangFormatVersion: 10
inplace: True
style: file
# exclude: './config '
- uses: EndBug/add-and-commit@v9
with:
author_name: github-actions
author_email: github-actions[bot]@users.noreply.github.com
message: 'Committing clang-format changes'