Skip to content

Add clang-format C style check GitHub Action #1

Add clang-format C style check GitHub Action

Add clang-format C style check GitHub Action #1

name: C Coding Style Check
# Runs on pushes to pull request
on: pull_request
jobs:
# Build job
clang-format-style-check:
name: C Coding Style Check (clang-format check)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clang-format
run: |

Check failure on line 14 in .github/workflows/clang-format-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/clang-format-test.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
wget https://apt.llvm.org/llvm.sh |
chmod +x llvm.sh |
sudo ./llvm.sh 19 |
sudo apt install clang-format-19
- name: clang-format code formatting check
run: clang-format-19 --dry-run -Werror *.c *.h